diff --git a/packages/devtools_app/lib/src/shared/primitives/README.md b/packages/devtools_app/lib/src/shared/primitives/README.md index a3adfab4a81..1d64b085184 100644 --- a/packages/devtools_app/lib/src/shared/primitives/README.md +++ b/packages/devtools_app/lib/src/shared/primitives/README.md @@ -1 +1,6 @@ + This folder contains independent libraries, i.e. libraries that do not depend on other libraries in `devtools_app`. \ No newline at end of file diff --git a/packages/devtools_app/lib/src/shared/primitives/ansi_utils.dart b/packages/devtools_app/lib/src/shared/primitives/ansi_utils.dart index e2f48b27e00..397c88f20aa 100644 --- a/packages/devtools_app/lib/src/shared/primitives/ansi_utils.dart +++ b/packages/devtools_app/lib/src/shared/primitives/ansi_utils.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. /// Parse text containing ANSI color escape codes. class AnsiParser { diff --git a/packages/devtools_app/lib/src/shared/primitives/blocking_action_mixin.dart b/packages/devtools_app/lib/src/shared/primitives/blocking_action_mixin.dart index 41333703d62..cb7c9b789a6 100644 --- a/packages/devtools_app/lib/src/shared/primitives/blocking_action_mixin.dart +++ b/packages/devtools_app/lib/src/shared/primitives/blocking_action_mixin.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:async'; diff --git a/packages/devtools_app/lib/src/shared/primitives/byte_utils.dart b/packages/devtools_app/lib/src/shared/primitives/byte_utils.dart index 08dd4c564c6..ae7259a39aa 100644 --- a/packages/devtools_app/lib/src/shared/primitives/byte_utils.dart +++ b/packages/devtools_app/lib/src/shared/primitives/byte_utils.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:collection'; import 'dart:math'; diff --git a/packages/devtools_app/lib/src/shared/primitives/collapsible_mixin.dart b/packages/devtools_app/lib/src/shared/primitives/collapsible_mixin.dart index db907bdcd76..7c81f418a85 100644 --- a/packages/devtools_app/lib/src/shared/primitives/collapsible_mixin.dart +++ b/packages/devtools_app/lib/src/shared/primitives/collapsible_mixin.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; diff --git a/packages/devtools_app/lib/src/shared/primitives/custom_pointer_scroll_view.dart b/packages/devtools_app/lib/src/shared/primitives/custom_pointer_scroll_view.dart index df01e12c338..d340d5e44a9 100644 --- a/packages/devtools_app/lib/src/shared/primitives/custom_pointer_scroll_view.dart +++ b/packages/devtools_app/lib/src/shared/primitives/custom_pointer_scroll_view.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. // ignore_for_file: avoid-explicit-type-declaration, forked code from Flutter framework. diff --git a/packages/devtools_app/lib/src/shared/primitives/diagnostics_text_styles.dart b/packages/devtools_app/lib/src/shared/primitives/diagnostics_text_styles.dart index 9031d3c9354..baac2c86683 100644 --- a/packages/devtools_app/lib/src/shared/primitives/diagnostics_text_styles.dart +++ b/packages/devtools_app/lib/src/shared/primitives/diagnostics_text_styles.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; diff --git a/packages/devtools_app/lib/src/shared/primitives/encoding.dart b/packages/devtools_app/lib/src/shared/primitives/encoding.dart index 52d077b57fd..4eda5174159 100644 --- a/packages/devtools_app/lib/src/shared/primitives/encoding.dart +++ b/packages/devtools_app/lib/src/shared/primitives/encoding.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:convert'; import 'dart:typed_data'; diff --git a/packages/devtools_app/lib/src/shared/primitives/enum_utils.dart b/packages/devtools_app/lib/src/shared/primitives/enum_utils.dart index 9ed253ddf61..ddb3a06fff6 100644 --- a/packages/devtools_app/lib/src/shared/primitives/enum_utils.dart +++ b/packages/devtools_app/lib/src/shared/primitives/enum_utils.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. mixin EnumIndexOrdering on Enum implements Comparable { @override diff --git a/packages/devtools_app/lib/src/shared/primitives/extent_delegate_list.dart b/packages/devtools_app/lib/src/shared/primitives/extent_delegate_list.dart index 5a6859dc61c..edbb9e9d0f6 100644 --- a/packages/devtools_app/lib/src/shared/primitives/extent_delegate_list.dart +++ b/packages/devtools_app/lib/src/shared/primitives/extent_delegate_list.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:math' as math; diff --git a/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/README.md b/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/README.md index 2c9a6f96a26..55cf373f5c0 100644 --- a/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/README.md +++ b/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/README.md @@ -1 +1,6 @@ + This folder contains code forked from https://github.com/google/flutter.widgets. \ No newline at end of file diff --git a/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/linked_scroll_controller.dart b/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/linked_scroll_controller.dart index 74520043b47..f493b9559dc 100644 --- a/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/linked_scroll_controller.dart +++ b/packages/devtools_app/lib/src/shared/primitives/flutter_widgets/linked_scroll_controller.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; diff --git a/packages/devtools_app/lib/src/shared/primitives/graph.dart b/packages/devtools_app/lib/src/shared/primitives/graph.dart index 132294a3777..a8bc1c171ac 100644 --- a/packages/devtools_app/lib/src/shared/primitives/graph.dart +++ b/packages/devtools_app/lib/src/shared/primitives/graph.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:collection/collection.dart'; diff --git a/packages/devtools_app/lib/src/shared/primitives/history_manager.dart b/packages/devtools_app/lib/src/shared/primitives/history_manager.dart index 5f385a5ab67..721518faabd 100644 --- a/packages/devtools_app/lib/src/shared/primitives/history_manager.dart +++ b/packages/devtools_app/lib/src/shared/primitives/history_manager.dart @@ -1,6 +1,6 @@ -// Copyright 2021 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be found -// in the LICENSE file. +// Copyright 2021 The Flutter Authors +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:flutter/foundation.dart'; diff --git a/packages/devtools_app/lib/src/shared/primitives/list_queue_value_notifier.dart b/packages/devtools_app/lib/src/shared/primitives/list_queue_value_notifier.dart index 1b8e0574c37..afa0bec60aa 100644 --- a/packages/devtools_app/lib/src/shared/primitives/list_queue_value_notifier.dart +++ b/packages/devtools_app/lib/src/shared/primitives/list_queue_value_notifier.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:collection'; diff --git a/packages/devtools_app/lib/src/shared/primitives/listenable.dart b/packages/devtools_app/lib/src/shared/primitives/listenable.dart index dc6bae852b0..68b191578b8 100644 --- a/packages/devtools_app/lib/src/shared/primitives/listenable.dart +++ b/packages/devtools_app/lib/src/shared/primitives/listenable.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:flutter/foundation.dart'; diff --git a/packages/devtools_app/lib/src/shared/primitives/math_utils.dart b/packages/devtools_app/lib/src/shared/primitives/math_utils.dart index bde54eebf0b..73a5176081f 100644 --- a/packages/devtools_app/lib/src/shared/primitives/math_utils.dart +++ b/packages/devtools_app/lib/src/shared/primitives/math_utils.dart @@ -1,6 +1,6 @@ -// Copyright 2021 The Chromium Authors. All rights reserved. +// Copyright 2021 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:math' as math; // TODO(jacobr): move more math utils over to this library. diff --git a/packages/devtools_app/lib/src/shared/primitives/message_bus.dart b/packages/devtools_app/lib/src/shared/primitives/message_bus.dart index 6dd2f7bde32..db8d2d09b8a 100644 --- a/packages/devtools_app/lib/src/shared/primitives/message_bus.dart +++ b/packages/devtools_app/lib/src/shared/primitives/message_bus.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:async'; diff --git a/packages/devtools_app/lib/src/shared/primitives/query_parameters.dart b/packages/devtools_app/lib/src/shared/primitives/query_parameters.dart index 8fa6d34b956..2ca2a621c6d 100644 --- a/packages/devtools_app/lib/src/shared/primitives/query_parameters.dart +++ b/packages/devtools_app/lib/src/shared/primitives/query_parameters.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app_shared/shared.dart'; import 'package:devtools_app_shared/ui.dart'; diff --git a/packages/devtools_app/lib/src/shared/primitives/simple_items.dart b/packages/devtools_app/lib/src/shared/primitives/simple_items.dart index 78d3063fdda..f6de6c579c3 100644 --- a/packages/devtools_app/lib/src/shared/primitives/simple_items.dart +++ b/packages/devtools_app/lib/src/shared/primitives/simple_items.dart @@ -1,6 +1,6 @@ -// Copyright 2022 The Chromium Authors. All rights reserved. +// Copyright 2022 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. /// Package name prefixes. class PackagePrefixes { diff --git a/packages/devtools_app/lib/src/shared/primitives/storage.dart b/packages/devtools_app/lib/src/shared/primitives/storage.dart index 9b68f6b3bcf..00d61871f96 100644 --- a/packages/devtools_app/lib/src/shared/primitives/storage.dart +++ b/packages/devtools_app/lib/src/shared/primitives/storage.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. /// An abstract implementation of a key value store. /// diff --git a/packages/devtools_app/lib/src/shared/primitives/syntax_highlighting.dart b/packages/devtools_app/lib/src/shared/primitives/syntax_highlighting.dart index 7a3d4639824..2fbf43ef61d 100644 --- a/packages/devtools_app/lib/src/shared/primitives/syntax_highlighting.dart +++ b/packages/devtools_app/lib/src/shared/primitives/syntax_highlighting.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:convert'; import 'dart:io'; diff --git a/packages/devtools_app/lib/src/shared/primitives/trace_event.dart b/packages/devtools_app/lib/src/shared/primitives/trace_event.dart index c5f76c61f6a..2967fb6a722 100644 --- a/packages/devtools_app/lib/src/shared/primitives/trace_event.dart +++ b/packages/devtools_app/lib/src/shared/primitives/trace_event.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. /// A single trace event that follows the Chrome Trace Event Format. /// diff --git a/packages/devtools_app/lib/src/shared/primitives/trees.dart b/packages/devtools_app/lib/src/shared/primitives/trees.dart index 574c433391b..5e37b9c4670 100644 --- a/packages/devtools_app/lib/src/shared/primitives/trees.dart +++ b/packages/devtools_app/lib/src/shared/primitives/trees.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:collection'; import 'dart:math'; diff --git a/packages/devtools_app/lib/src/shared/primitives/url_utils.dart b/packages/devtools_app/lib/src/shared/primitives/url_utils.dart index 7c473566b76..632f487fb80 100644 --- a/packages/devtools_app/lib/src/shared/primitives/url_utils.dart +++ b/packages/devtools_app/lib/src/shared/primitives/url_utils.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. /// Extracts the current DevTools page from the given [url]. String extractCurrentPageFromUrl(String url) { diff --git a/packages/devtools_app/lib/src/shared/primitives/utils.dart b/packages/devtools_app/lib/src/shared/primitives/utils.dart index 536bc730ea4..72d9567455c 100644 --- a/packages/devtools_app/lib/src/shared/primitives/utils.dart +++ b/packages/devtools_app/lib/src/shared/primitives/utils.dart @@ -1,6 +1,6 @@ -// Copyright 2018 The Chromium Authors. All rights reserved. +// Copyright 2018 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. // This file contain low level utils, i.e. utils that do not depend on // libraries in this package. diff --git a/packages/devtools_app/test/shared/primitives/byte_utils_test.dart b/packages/devtools_app/test/shared/primitives/byte_utils_test.dart index 608d16a4483..87442140167 100644 --- a/packages/devtools_app/test/shared/primitives/byte_utils_test.dart +++ b/packages/devtools_app/test/shared/primitives/byte_utils_test.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:typed_data'; diff --git a/packages/devtools_app/test/shared/primitives/encoding_test.dart b/packages/devtools_app/test/shared/primitives/encoding_test.dart index b502c065886..cae53d1f12f 100644 --- a/packages/devtools_app/test/shared/primitives/encoding_test.dart +++ b/packages/devtools_app/test/shared/primitives/encoding_test.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:convert'; diff --git a/packages/devtools_app/test/shared/primitives/enum_utils_test.dart b/packages/devtools_app/test/shared/primitives/enum_utils_test.dart index 42492c7c2bf..b31519fb17b 100644 --- a/packages/devtools_app/test/shared/primitives/enum_utils_test.dart +++ b/packages/devtools_app/test/shared/primitives/enum_utils_test.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/enum_utils.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/extent_delegate_list_view_test.dart b/packages/devtools_app/test/shared/primitives/extent_delegate_list_view_test.dart index d8c8f24fa9d..2d4dbc285b7 100644 --- a/packages/devtools_app/test/shared/primitives/extent_delegate_list_view_test.dart +++ b/packages/devtools_app/test/shared/primitives/extent_delegate_list_view_test.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. @TestOn('vm') library; diff --git a/packages/devtools_app/test/shared/primitives/extent_delegate_test.dart b/packages/devtools_app/test/shared/primitives/extent_delegate_test.dart index 816c9a8b3e3..3e7dfad9c13 100644 --- a/packages/devtools_app/test/shared/primitives/extent_delegate_test.dart +++ b/packages/devtools_app/test/shared/primitives/extent_delegate_test.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. // ignore_for_file: avoid_print diff --git a/packages/devtools_app/test/shared/primitives/feature_flags_test.dart b/packages/devtools_app/test/shared/primitives/feature_flags_test.dart index 73fb5778500..282b76d875b 100644 --- a/packages/devtools_app/test/shared/primitives/feature_flags_test.dart +++ b/packages/devtools_app/test/shared/primitives/feature_flags_test.dart @@ -1,6 +1,6 @@ -// Copyright 2022 The Chromium Authors. All rights reserved. +// Copyright 2022 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/feature_flags.dart'; import 'package:devtools_app/src/shared/globals.dart'; diff --git a/packages/devtools_app/test/shared/primitives/graph_test.dart b/packages/devtools_app/test/shared/primitives/graph_test.dart index 91a212b804e..4412acf2248 100644 --- a/packages/devtools_app/test/shared/primitives/graph_test.dart +++ b/packages/devtools_app/test/shared/primitives/graph_test.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/graph.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/history_manager_test.dart b/packages/devtools_app/test/shared/primitives/history_manager_test.dart index 9767fd48513..3c269cf0e9d 100644 --- a/packages/devtools_app/test/shared/primitives/history_manager_test.dart +++ b/packages/devtools_app/test/shared/primitives/history_manager_test.dart @@ -1,6 +1,6 @@ -// Copyright 2021 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be found -// in the LICENSE file. +// Copyright 2021 The Flutter Authors +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/history_manager.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/linked_scroll_controller_test.dart b/packages/devtools_app/test/shared/primitives/linked_scroll_controller_test.dart index 6c72fce3f9c..13f004632ee 100644 --- a/packages/devtools_app/test/shared/primitives/linked_scroll_controller_test.dart +++ b/packages/devtools_app/test/shared/primitives/linked_scroll_controller_test.dart @@ -1,6 +1,6 @@ -// Copyright 2020 The Chromium Authors. All rights reserved. +// Copyright 2020 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:async'; diff --git a/packages/devtools_app/test/shared/primitives/list_queue_value_notifier_test.dart b/packages/devtools_app/test/shared/primitives/list_queue_value_notifier_test.dart index 005432e4c65..7bea5756094 100644 --- a/packages/devtools_app/test/shared/primitives/list_queue_value_notifier_test.dart +++ b/packages/devtools_app/test/shared/primitives/list_queue_value_notifier_test.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. void main() { // TODO(dantup): Add tests for this + consider moving to devtools_app_shared. diff --git a/packages/devtools_app/test/shared/primitives/math_utils_test.dart b/packages/devtools_app/test/shared/primitives/math_utils_test.dart index 7d3399ac0ba..d4da91ecfd3 100644 --- a/packages/devtools_app/test/shared/primitives/math_utils_test.dart +++ b/packages/devtools_app/test/shared/primitives/math_utils_test.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/math_utils.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/message_bus_test.dart b/packages/devtools_app/test/shared/primitives/message_bus_test.dart index 8e2e2a14ded..536724993b8 100644 --- a/packages/devtools_app/test/shared/primitives/message_bus_test.dart +++ b/packages/devtools_app/test/shared/primitives/message_bus_test.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/message_bus.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/query_parameters_test.dart b/packages/devtools_app/test/shared/primitives/query_parameters_test.dart index c7510be8a99..d664e95716d 100644 --- a/packages/devtools_app/test/shared/primitives/query_parameters_test.dart +++ b/packages/devtools_app/test/shared/primitives/query_parameters_test.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:ui'; diff --git a/packages/devtools_app/test/shared/primitives/simple_items_test.dart b/packages/devtools_app/test/shared/primitives/simple_items_test.dart index 38cba4c590a..2dc161fae64 100644 --- a/packages/devtools_app/test/shared/primitives/simple_items_test.dart +++ b/packages/devtools_app/test/shared/primitives/simple_items_test.dart @@ -1,6 +1,6 @@ -// Copyright 2022 The Chromium Authors. All rights reserved. +// Copyright 2022 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/simple_items.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/trees_test.dart b/packages/devtools_app/test/shared/primitives/trees_test.dart index c48400cef2a..898b1c56270 100644 --- a/packages/devtools_app/test/shared/primitives/trees_test.dart +++ b/packages/devtools_app/test/shared/primitives/trees_test.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/trees.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/url_utils_test.dart b/packages/devtools_app/test/shared/primitives/url_utils_test.dart index 5c0ae81947b..ba1ee16ca42 100644 --- a/packages/devtools_app/test/shared/primitives/url_utils_test.dart +++ b/packages/devtools_app/test/shared/primitives/url_utils_test.dart @@ -1,6 +1,6 @@ -// Copyright 2019 The Chromium Authors. All rights reserved. +// Copyright 2019 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app/src/shared/primitives/url_utils.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_app/test/shared/primitives/utils_test.dart b/packages/devtools_app/test/shared/primitives/utils_test.dart index 97f3448227d..b8d1ad9ab83 100644 --- a/packages/devtools_app/test/shared/primitives/utils_test.dart +++ b/packages/devtools_app/test/shared/primitives/utils_test.dart @@ -1,6 +1,6 @@ -// Copyright 2018 The Chromium Authors. All rights reserved. +// Copyright 2018 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:collection/collection.dart'; import 'package:devtools_app/src/shared/primitives/utils.dart';