Skip to content

Commit 2124576

Browse files
authored
license update - batch 30 (#8728)
1 parent fbfee2e commit 2124576

18 files changed

+39
-34
lines changed

packages/devtools_app/lib/src/shared/console/console.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2020 The Chromium Authors. All rights reserved.
1+
// Copyright 2020 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66

packages/devtools_app/lib/src/shared/console/console_service.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2021 The Chromium Authors. All rights reserved.
1+
// Copyright 2021 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66

packages/devtools_app/lib/src/shared/console/eval/auto_complete.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2020 The Chromium Authors. All rights reserved.
1+
// Copyright 2020 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66

packages/devtools_app/lib/src/shared/console/eval/eval_service.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2022 The Chromium Authors. All rights reserved.
1+
// Copyright 2022 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66

packages/devtools_app/lib/src/shared/console/eval/inspector_tree.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2019 The Chromium Authors. All rights reserved.
1+
// Copyright 2019 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
/// Inspector specific tree rendering support.
66
///

packages/devtools_app/lib/src/shared/console/eval/inspector_tree_v2.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2019 The Chromium Authors. All rights reserved.
1+
// Copyright 2019 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
/// Inspector specific tree rendering support.
66
///
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1+
<!--
2+
Copyright 2025 The Flutter Authors
3+
Use of this source code is governed by a BSD-style license that can be
4+
found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
5+
-->
16
This folder contains independent libraries, i.e. libraries that do not depend
27
on other libraries in the folder `console`.

packages/devtools_app/lib/src/shared/console/primitives/assignment.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2023 The Chromium Authors. All rights reserved.
1+
// Copyright 2023 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
/// Assignment of an item in console to a named variable.
66
class ConsoleVariableAssignment {

packages/devtools_app/lib/src/shared/console/primitives/eval_history.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2020 The Chromium Authors. All rights reserved.
1+
// Copyright 2020 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
/// Store and manipulate the expression evaluation history.
66
class EvalHistory {

packages/devtools_app/lib/src/shared/console/primitives/scope.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2023 The Chromium Authors. All rights reserved.
1+
// Copyright 2023 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'package:vm_service/vm_service.dart';
66

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2018 The Chromium Authors. All rights reserved.
1+
// Copyright 2018 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
// TODO(jacobr): add render, semantics, and layer trees.
66
enum FlutterTreeType { widget }

packages/devtools_app/lib/src/shared/console/widgets/console_pane.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2020 The Chromium Authors. All rights reserved.
1+
// Copyright 2020 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'package:devtools_app_shared/ui.dart';
66
import 'package:flutter/foundation.dart';

packages/devtools_app/lib/src/shared/console/widgets/description.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2019 The Chromium Authors. All rights reserved.
1+
// Copyright 2019 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'package:devtools_app_shared/ui.dart';
66
import 'package:flutter/material.dart';

packages/devtools_app/lib/src/shared/console/widgets/display_provider.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2020 The Chromium Authors. All rights reserved.
1+
// Copyright 2020 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66

packages/devtools_app/lib/src/shared/console/widgets/evaluate.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2020 The Chromium Authors. All rights reserved.
1+
// Copyright 2020 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66
import 'dart:math';

packages/devtools_app/lib/src/shared/console/widgets/expandable_variable.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2022 The Chromium Authors. All rights reserved.
1+
// Copyright 2022 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66

packages/devtools_app/lib/src/shared/console/widgets/help_dialog.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2023 The Chromium Authors. All rights reserved.
1+
// Copyright 2023 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'dart:async';
66

packages/devtools_app/test/shared/console/assignment_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright 2023 The Chromium Authors. All rights reserved.
1+
// Copyright 2023 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
3-
// found in the LICENSE file.
3+
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
44

55
import 'package:devtools_app/src/shared/console/primitives/assignment.dart';
66
import 'package:flutter_test/flutter_test.dart';

0 commit comments

Comments
 (0)