From e90c6ac1e2b0fdbf44f159e7ce6fcc6b1db7518f Mon Sep 17 00:00:00 2001 From: Ann Marie Mossman <233583+mossmana@users.noreply.github.com> Date: Fri, 17 Jan 2025 11:52:43 -0800 Subject: [PATCH] License update - Batch 62 (#8777) * license update - batch 62 * manually replaced incorrect header --- packages/devtools_shared/lib/devtools_server.dart | 4 ++-- packages/devtools_shared/lib/service.dart | 4 ++-- packages/devtools_shared/lib/src/server/devtools_store.dart | 4 ++-- packages/devtools_shared/lib/src/server/file_system.dart | 4 ++-- packages/devtools_shared/lib/src/server/flutter_store.dart | 4 ++-- .../devtools_shared/lib/src/server/handlers/_app_size.dart | 4 ++-- .../devtools_shared/lib/src/server/handlers/_deeplink.dart | 4 ++-- .../lib/src/server/handlers/_devtools_extensions.dart | 4 ++-- packages/devtools_shared/lib/src/server/handlers/_dtd.dart | 4 ++-- .../devtools_shared/lib/src/server/handlers/_general.dart | 4 ++-- .../lib/src/server/handlers/_preferences.dart | 4 ++-- .../lib/src/server/handlers/_release_notes.dart | 4 ++-- .../devtools_shared/lib/src/server/handlers/_storage.dart | 4 ++-- .../devtools_shared/lib/src/server/handlers/_survey.dart | 4 ++-- packages/devtools_shared/lib/src/server/server_api.dart | 4 ++-- packages/devtools_shared/lib/src/service/service.dart | 4 ++-- packages/devtools_shared/lib/src/service_utils.dart | 6 +++--- packages/devtools_shared/lib/src/sse/_fake_sse.dart | 4 ++-- packages/devtools_shared/lib/src/sse/sse_shim.dart | 4 ++-- packages/devtools_shared/test/server/deeplink_api_test.dart | 4 ++-- .../test/server/devtools_extensions_api_test.dart | 4 ++-- packages/devtools_shared/test/server/dtd_api_test.dart | 4 ++-- packages/devtools_shared/test/server/general_api_test.dart | 4 ++-- packages/devtools_shared/test/service_utils_test.dart | 4 ++-- 24 files changed, 49 insertions(+), 49 deletions(-) diff --git a/packages/devtools_shared/lib/devtools_server.dart b/packages/devtools_shared/lib/devtools_server.dart index e69a38f9a94..661970ab7b3 100644 --- a/packages/devtools_shared/lib/devtools_server.dart +++ b/packages/devtools_shared/lib/devtools_server.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. export 'src/server/devtools_store.dart'; export 'src/server/file_system.dart'; diff --git a/packages/devtools_shared/lib/service.dart b/packages/devtools_shared/lib/service.dart index e13e90dab34..5e398384018 100644 --- a/packages/devtools_shared/lib/service.dart +++ b/packages/devtools_shared/lib/service.dart @@ -1,5 +1,5 @@ -// 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. export 'src/service/service.dart'; diff --git a/packages/devtools_shared/lib/src/server/devtools_store.dart b/packages/devtools_shared/lib/src/server/devtools_store.dart index daa6ff91e90..4d468b5c393 100644 --- a/packages/devtools_shared/lib/src/server/devtools_store.dart +++ b/packages/devtools_shared/lib/src/server/devtools_store.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 'file_system.dart'; diff --git a/packages/devtools_shared/lib/src/server/file_system.dart b/packages/devtools_shared/lib/src/server/file_system.dart index 997c8109925..18f2a0baeaa 100644 --- a/packages/devtools_shared/lib/src/server/file_system.dart +++ b/packages/devtools_shared/lib/src/server/file_system.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:convert'; import 'dart:io'; diff --git a/packages/devtools_shared/lib/src/server/flutter_store.dart b/packages/devtools_shared/lib/src/server/flutter_store.dart index fc7cec9c9c1..34410707b31 100644 --- a/packages/devtools_shared/lib/src/server/flutter_store.dart +++ b/packages/devtools_shared/lib/src/server/flutter_store.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 'file_system.dart'; diff --git a/packages/devtools_shared/lib/src/server/handlers/_app_size.dart b/packages/devtools_shared/lib/src/server/handlers/_app_size.dart index da5c41c2f11..683522764ed 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_app_size.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_app_size.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_deeplink.dart b/packages/devtools_shared/lib/src/server/handlers/_deeplink.dart index 9456d64ae06..c65f749f57b 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_deeplink.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_deeplink.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_devtools_extensions.dart b/packages/devtools_shared/lib/src/server/handlers/_devtools_extensions.dart index 33ceeb4af20..3e2172530b5 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_devtools_extensions.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_devtools_extensions.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_dtd.dart b/packages/devtools_shared/lib/src/server/handlers/_dtd.dart index 2fe7d1e795f..5b6fb59d5cb 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_dtd.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_dtd.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_general.dart b/packages/devtools_shared/lib/src/server/handlers/_general.dart index d309b771701..378f5ba61c6 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_general.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_general.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_preferences.dart b/packages/devtools_shared/lib/src/server/handlers/_preferences.dart index 7a4d2c97990..400e02fd89c 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_preferences.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_preferences.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_release_notes.dart b/packages/devtools_shared/lib/src/server/handlers/_release_notes.dart index 8e0b6396772..2382088a82f 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_release_notes.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_release_notes.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_storage.dart b/packages/devtools_shared/lib/src/server/handlers/_storage.dart index fd762bfaf86..deeea33bd69 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_storage.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_storage.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/handlers/_survey.dart b/packages/devtools_shared/lib/src/server/handlers/_survey.dart index fdec86ae7b0..0423fd14289 100644 --- a/packages/devtools_shared/lib/src/server/handlers/_survey.dart +++ b/packages/devtools_shared/lib/src/server/handlers/_survey.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. // ignore_for_file: avoid_classes_with_only_static_members diff --git a/packages/devtools_shared/lib/src/server/server_api.dart b/packages/devtools_shared/lib/src/server/server_api.dart index 84df1c296fa..6eb1f435093 100644 --- a/packages/devtools_shared/lib/src/server/server_api.dart +++ b/packages/devtools_shared/lib/src/server/server_api.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_classes_with_only_static_members, avoid_print diff --git a/packages/devtools_shared/lib/src/service/service.dart b/packages/devtools_shared/lib/src/service/service.dart index a4200b2a004..d8719b5a9cc 100644 --- a/packages/devtools_shared/lib/src/service/service.dart +++ b/packages/devtools_shared/lib/src/service/service.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. // Code needs to match API from VmService. // ignore_for_file: avoid-dynamic diff --git a/packages/devtools_shared/lib/src/service_utils.dart b/packages/devtools_shared/lib/src/service_utils.dart index 4afee1aa859..abe1c6e5cbd 100644 --- a/packages/devtools_shared/lib/src/service_utils.dart +++ b/packages/devtools_shared/lib/src/service_utils.dart @@ -1,6 +1,6 @@ -// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file -// for details. All rights reserved. Use of this source code is governed by a -// BSD-style license that can be found in the LICENSE file. +// 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 or at https://developers.google.com/open-source/licenses/bsd. class RegisteredService { const RegisteredService({ diff --git a/packages/devtools_shared/lib/src/sse/_fake_sse.dart b/packages/devtools_shared/lib/src/sse/_fake_sse.dart index f33cb885647..2ab17c59880 100644 --- a/packages/devtools_shared/lib/src/sse/_fake_sse.dart +++ b/packages/devtools_shared/lib/src/sse/_fake_sse.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_shared/lib/src/sse/sse_shim.dart b/packages/devtools_shared/lib/src/sse/sse_shim.dart index a433d6c2dd5..23fa851cac6 100644 --- a/packages/devtools_shared/lib/src/sse/sse_shim.dart +++ b/packages/devtools_shared/lib/src/sse/sse_shim.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. export '_fake_sse.dart' if (dart.library.js_interop) 'package:sse/client/sse_client.dart' diff --git a/packages/devtools_shared/test/server/deeplink_api_test.dart b/packages/devtools_shared/test/server/deeplink_api_test.dart index 7aaf1fa386b..e3d39f26dee 100644 --- a/packages/devtools_shared/test/server/deeplink_api_test.dart +++ b/packages/devtools_shared/test/server/deeplink_api_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:io'; diff --git a/packages/devtools_shared/test/server/devtools_extensions_api_test.dart b/packages/devtools_shared/test/server/devtools_extensions_api_test.dart index c88743b62e1..140a83452e3 100644 --- a/packages/devtools_shared/test/server/devtools_extensions_api_test.dart +++ b/packages/devtools_shared/test/server/devtools_extensions_api_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'; import 'dart:io'; diff --git a/packages/devtools_shared/test/server/dtd_api_test.dart b/packages/devtools_shared/test/server/dtd_api_test.dart index 724b7b93b1c..c54ae54cfde 100644 --- a/packages/devtools_shared/test/server/dtd_api_test.dart +++ b/packages/devtools_shared/test/server/dtd_api_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'; import 'dart:io'; diff --git a/packages/devtools_shared/test/server/general_api_test.dart b/packages/devtools_shared/test/server/general_api_test.dart index 27bb7429e37..4e2c46be605 100644 --- a/packages/devtools_shared/test/server/general_api_test.dart +++ b/packages/devtools_shared/test/server/general_api_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:io'; diff --git a/packages/devtools_shared/test/service_utils_test.dart b/packages/devtools_shared/test/service_utils_test.dart index 9cc9a662ec8..fe3a8df5bf3 100644 --- a/packages/devtools_shared/test/service_utils_test.dart +++ b/packages/devtools_shared/test/service_utils_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_shared/src/service_utils.dart'; import 'package:test/test.dart';