license update - batch 38 (#8739)

diff --git a/packages/devtools_app/lib/src/shared/primitives/README.md b/packages/devtools_app/lib/src/shared/primitives/README.md
index a3adfab..1d64b08 100644
--- a/packages/devtools_app/lib/src/shared/primitives/README.md
+++ b/packages/devtools_app/lib/src/shared/primitives/README.md
@@ -1 +1,6 @@
+<!--
+Copyright 2025 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.
+-->
 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 e2f48b2..397c88f 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 4133370..cb7c9b7 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 08dd4c5..ae7259a 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 db907bd..7c81f41 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 df01e12..d340d5e 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 9031d3c..baac2c8 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 52d077b..4eda517 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 9ed253d..ddb3a06 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<T extends Enum> on Enum implements Comparable<T> {
   @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 5a6859d..edbb9e9 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 2c9a6f9..55cf373 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 @@
+<!--
+Copyright 2025 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.
+-->
 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 7452004..f493b95 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 132294a..a8bc1c1 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 5f385a5..721518f 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 1b8e057..afa0bec 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 dc6bae8..68b1915 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 bde54ee..73a5176 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 6dd2f7b..db8d2d0 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 8fa6d34..2ca2a62 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 78d3063..f6de6c5 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 9b68f6b..00d6187 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 7a3d463..2fbf43e 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 c5f76c6..2967fb6 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 574c433..5e37b9c 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 7c47356..632f487 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 536bc73..72d9567 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 608d16a..8744214 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 b502c06..cae53d1 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 42492c7..b31519f 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 d8c8f24..2d4dbc2 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 816c9a8..3e7dfad 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 73fb577..282b76d 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 91a212b..4412acf 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 9767fd4..3c269cf 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 6c72fce..13f0046 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 005432e..7bea575 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 7d3399a..d4da91e 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 8e2e2a1..5367249 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 c7510be..d664e95 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 38cba4c..2dc161f 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 c48400c..898b1c5 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 5c0ae81..ba1ee16 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 97f3448..b8d1ad9 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';