From 6cf844a6605d5cb8970b7a16524f9b4c14c93583 Mon Sep 17 00:00:00 2001 From: Ann Mossman <233583+mossmana@users.noreply.github.com> Date: Fri, 10 Jan 2025 14:49:56 -0800 Subject: [PATCH] license update - batch 15 --- .../lib/src/screens/debugger/breakpoint_manager.dart | 4 ++-- .../devtools_app/lib/src/screens/debugger/breakpoints.dart | 4 ++-- .../devtools_app/lib/src/screens/debugger/call_stack.dart | 4 ++-- packages/devtools_app/lib/src/screens/debugger/codeview.dart | 4 ++-- .../lib/src/screens/debugger/codeview_controller.dart | 4 ++-- packages/devtools_app/lib/src/screens/debugger/common.dart | 4 ++-- packages/devtools_app/lib/src/screens/debugger/controls.dart | 4 ++-- .../lib/src/screens/debugger/debugger_controller.dart | 4 ++-- .../devtools_app/lib/src/screens/debugger/debugger_model.dart | 4 ++-- .../lib/src/screens/debugger/debugger_screen.dart | 4 ++-- .../devtools_app/lib/src/screens/debugger/file_search.dart | 4 ++-- packages/devtools_app/lib/src/screens/debugger/key_sets.dart | 4 ++-- .../lib/src/screens/debugger/program_explorer.dart | 4 ++-- .../lib/src/screens/debugger/program_explorer_controller.dart | 4 ++-- .../lib/src/screens/debugger/program_explorer_model.dart | 4 ++-- .../devtools_app/lib/src/screens/debugger/span_parser.dart | 4 ++-- .../lib/src/screens/debugger/syntax_highlighter.dart | 3 +++ packages/devtools_app/lib/src/screens/debugger/variables.dart | 4 ++-- .../test/screens/debugger/association_variable_test.dart | 4 ++-- .../screens/debugger/debugger_codeview_statistics_test.dart | 4 ++-- .../test/screens/debugger/debugger_codeview_test.dart | 4 ++-- .../test/screens/debugger/debugger_console_test.dart | 4 ++-- .../test/screens/debugger/debugger_controller_stdio_test.dart | 4 ++-- .../test/screens/debugger/debugger_controller_test.dart | 4 ++-- .../test/screens/debugger/debugger_evaluation_test.dart | 4 ++-- .../test/screens/debugger/debugger_floating_test.dart | 4 ++-- .../screens/debugger/debugger_screen_breakpoints_test.dart | 4 ++-- .../screens/debugger/debugger_screen_call_stack_test.dart | 4 ++-- .../screens/debugger/debugger_screen_dap_variables_test.dart | 4 ++-- .../debugger/debugger_screen_explorer_visibility_test.dart | 4 ++-- .../test/screens/debugger/debugger_screen_paused_test.dart | 4 ++-- .../test/screens/debugger/debugger_screen_test.dart | 4 ++-- .../test/screens/debugger/debugger_screen_variables_test.dart | 4 ++-- .../test/screens/debugger/debugger_scripts_test.dart | 4 ++-- .../devtools_app/test/screens/debugger/eval_field_test.dart | 4 ++-- .../devtools_app/test/screens/debugger/file_search_test.dart | 4 ++-- .../test/screens/debugger/program_explorer_test.dart | 4 ++-- .../test/screens/debugger/records_variable_test.dart | 4 ++-- .../devtools_app/test/screens/debugger/span_parser_test.dart | 4 ++-- .../test/screens/debugger/syntax_highlighter_test.dart | 4 ++-- .../test/screens/debugger/typed_data_variable_test.dart | 4 ++-- .../devtools_app/test/screens/debugger/variables_test.dart | 4 ++-- 42 files changed, 85 insertions(+), 82 deletions(-) diff --git a/packages/devtools_app/lib/src/screens/debugger/breakpoint_manager.dart b/packages/devtools_app/lib/src/screens/debugger/breakpoint_manager.dart index 45c3e56bdc6..0178b2030cf 100644 --- a/packages/devtools_app/lib/src/screens/debugger/breakpoint_manager.dart +++ b/packages/devtools_app/lib/src/screens/debugger/breakpoint_manager.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 'dart:async'; diff --git a/packages/devtools_app/lib/src/screens/debugger/breakpoints.dart b/packages/devtools_app/lib/src/screens/debugger/breakpoints.dart index 7da9046922d..f49b8757f98 100644 --- a/packages/devtools_app/lib/src/screens/debugger/breakpoints.dart +++ b/packages/devtools_app/lib/src/screens/debugger/breakpoints.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:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart' hide Badge; diff --git a/packages/devtools_app/lib/src/screens/debugger/call_stack.dart b/packages/devtools_app/lib/src/screens/debugger/call_stack.dart index 59fed8e1292..ecdb0b1780d 100644 --- a/packages/devtools_app/lib/src/screens/debugger/call_stack.dart +++ b/packages/devtools_app/lib/src/screens/debugger/call_stack.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/lib/src/screens/debugger/codeview.dart b/packages/devtools_app/lib/src/screens/debugger/codeview.dart index 64ebb7f7e5e..4648361e8c4 100644 --- a/packages/devtools_app/lib/src/screens/debugger/codeview.dart +++ b/packages/devtools_app/lib/src/screens/debugger/codeview.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'; import 'dart:math' as math; diff --git a/packages/devtools_app/lib/src/screens/debugger/codeview_controller.dart b/packages/devtools_app/lib/src/screens/debugger/codeview_controller.dart index b5e251c66ab..dcfcafa14fd 100644 --- a/packages/devtools_app/lib/src/screens/debugger/codeview_controller.dart +++ b/packages/devtools_app/lib/src/screens/debugger/codeview_controller.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 'dart:async'; import 'dart:convert'; diff --git a/packages/devtools_app/lib/src/screens/debugger/common.dart b/packages/devtools_app/lib/src/screens/debugger/common.dart index 37a64b5518b..8ef93fb0838 100644 --- a/packages/devtools_app/lib/src/screens/debugger/common.dart +++ b/packages/devtools_app/lib/src/screens/debugger/common.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:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; diff --git a/packages/devtools_app/lib/src/screens/debugger/controls.dart b/packages/devtools_app/lib/src/screens/debugger/controls.dart index 6193e459b55..e1a58527346 100644 --- a/packages/devtools_app/lib/src/screens/debugger/controls.dart +++ b/packages/devtools_app/lib/src/screens/debugger/controls.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/lib/src/screens/debugger/debugger_controller.dart b/packages/devtools_app/lib/src/screens/debugger/debugger_controller.dart index efd69a9af1f..04c8f3b8f89 100644 --- a/packages/devtools_app/lib/src/screens/debugger/debugger_controller.dart +++ b/packages/devtools_app/lib/src/screens/debugger/debugger_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 'dart:async'; diff --git a/packages/devtools_app/lib/src/screens/debugger/debugger_model.dart b/packages/devtools_app/lib/src/screens/debugger/debugger_model.dart index 5509726a75a..e254876f9df 100644 --- a/packages/devtools_app/lib/src/screens/debugger/debugger_model.dart +++ b/packages/devtools_app/lib/src/screens/debugger/debugger_model.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:vm_service/vm_service.dart'; diff --git a/packages/devtools_app/lib/src/screens/debugger/debugger_screen.dart b/packages/devtools_app/lib/src/screens/debugger/debugger_screen.dart index 7cefcc4d0ce..9404ce329ba 100644 --- a/packages/devtools_app/lib/src/screens/debugger/debugger_screen.dart +++ b/packages/devtools_app/lib/src/screens/debugger/debugger_screen.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/screens/debugger/file_search.dart b/packages/devtools_app/lib/src/screens/debugger/file_search.dart index 9d8b81d4658..3777e3cd1a2 100644 --- a/packages/devtools_app/lib/src/screens/debugger/file_search.dart +++ b/packages/devtools_app/lib/src/screens/debugger/file_search.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 'package:devtools_app_shared/utils.dart'; import 'package:flutter/material.dart'; diff --git a/packages/devtools_app/lib/src/screens/debugger/key_sets.dart b/packages/devtools_app/lib/src/screens/debugger/key_sets.dart index 59e9db1ecb8..9efc9bd576e 100644 --- a/packages/devtools_app/lib/src/screens/debugger/key_sets.dart +++ b/packages/devtools_app/lib/src/screens/debugger/key_sets.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 'package:flutter/material.dart'; import 'package:flutter/services.dart'; diff --git a/packages/devtools_app/lib/src/screens/debugger/program_explorer.dart b/packages/devtools_app/lib/src/screens/debugger/program_explorer.dart index 7f855f0684b..d1d66a63075 100644 --- a/packages/devtools_app/lib/src/screens/debugger/program_explorer.dart +++ b/packages/devtools_app/lib/src/screens/debugger/program_explorer.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:async'; diff --git a/packages/devtools_app/lib/src/screens/debugger/program_explorer_controller.dart b/packages/devtools_app/lib/src/screens/debugger/program_explorer_controller.dart index 2332f1b363b..632df8d7ac8 100644 --- a/packages/devtools_app/lib/src/screens/debugger/program_explorer_controller.dart +++ b/packages/devtools_app/lib/src/screens/debugger/program_explorer_controller.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:async'; diff --git a/packages/devtools_app/lib/src/screens/debugger/program_explorer_model.dart b/packages/devtools_app/lib/src/screens/debugger/program_explorer_model.dart index 22571c639ad..e21f7608ff9 100644 --- a/packages/devtools_app/lib/src/screens/debugger/program_explorer_model.dart +++ b/packages/devtools_app/lib/src/screens/debugger/program_explorer_model.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 'package:vm_service/vm_service.dart'; diff --git a/packages/devtools_app/lib/src/screens/debugger/span_parser.dart b/packages/devtools_app/lib/src/screens/debugger/span_parser.dart index 4355d71bde9..55dec8993b3 100644 --- a/packages/devtools_app/lib/src/screens/debugger/span_parser.dart +++ b/packages/devtools_app/lib/src/screens/debugger/span_parser.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:collection'; import 'dart:convert'; diff --git a/packages/devtools_app/lib/src/screens/debugger/syntax_highlighter.dart b/packages/devtools_app/lib/src/screens/debugger/syntax_highlighter.dart index db1fc64f488..4665577eec0 100644 --- a/packages/devtools_app/lib/src/screens/debugger/syntax_highlighter.dart +++ b/packages/devtools_app/lib/src/screens/debugger/syntax_highlighter.dart @@ -1,3 +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. // 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 diff --git a/packages/devtools_app/lib/src/screens/debugger/variables.dart b/packages/devtools_app/lib/src/screens/debugger/variables.dart index de9b07faedc..6e59acb0bf4 100644 --- a/packages/devtools_app/lib/src/screens/debugger/variables.dart +++ b/packages/devtools_app/lib/src/screens/debugger/variables.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. // TODO(https://github.com/flutter/devtools/issues/4717): migrate away from // deprecated members. diff --git a/packages/devtools_app/test/screens/debugger/association_variable_test.dart b/packages/devtools_app/test/screens/debugger/association_variable_test.dart index 1587388cf91..a23b9e0eacb 100644 --- a/packages/devtools_app/test/screens/debugger/association_variable_test.dart +++ b/packages/devtools_app/test/screens/debugger/association_variable_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 'package:devtools_app/src/service/service_manager.dart'; import 'package:devtools_app/src/shared/diagnostics/dart_object_node.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_codeview_statistics_test.dart b/packages/devtools_app/test/screens/debugger/debugger_codeview_statistics_test.dart index 3f683d951ab..04a05a67585 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_codeview_statistics_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_codeview_statistics_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/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/codeview.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_codeview_test.dart b/packages/devtools_app/test/screens/debugger/debugger_codeview_test.dart index 814d526fe0a..c3bd12f9ed2 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_codeview_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_codeview_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/codeview.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_console_test.dart b/packages/devtools_app/test/screens/debugger/debugger_console_test.dart index 0a43edd41a4..3552e909eb2 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_console_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_console_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/shared/console/widgets/console_pane.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_controller_stdio_test.dart b/packages/devtools_app/test/screens/debugger/debugger_controller_stdio_test.dart index ab67b450232..ca24fdb0dcf 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_controller_stdio_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_controller_stdio_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 'package:devtools_app/src/service/service_manager.dart'; import 'package:devtools_app/src/shared/globals.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_controller_test.dart b/packages/devtools_app/test/screens/debugger/debugger_controller_test.dart index a0b6cdbafe2..288a81fa424 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_controller_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_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 'package:devtools_app/src/screens/debugger/codeview_controller.dart'; import 'package:devtools_app/src/service/service_manager.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_evaluation_test.dart b/packages/devtools_app/test/screens/debugger/debugger_evaluation_test.dart index 0351e35ff5f..ef0c1f1d96f 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_evaluation_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_evaluation_test.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:async'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_floating_test.dart b/packages/devtools_app/test/screens/debugger/debugger_floating_test.dart index 23b2c618631..06185005851 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_floating_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_floating_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app_shared/ui.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_screen_breakpoints_test.dart b/packages/devtools_app/test/screens/debugger/debugger_screen_breakpoints_test.dart index 849c2b0ded4..b314e61337a 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_screen_breakpoints_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_screen_breakpoints_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/debugger_model.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_screen_call_stack_test.dart b/packages/devtools_app/test/screens/debugger/debugger_screen_call_stack_test.dart index d2b2e95c29c..cbe4abe8038 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_screen_call_stack_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_screen_call_stack_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/debugger_model.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_screen_dap_variables_test.dart b/packages/devtools_app/test/screens/debugger/debugger_screen_dap_variables_test.dart index 389c77f7365..f43193e23e0 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_screen_dap_variables_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_screen_dap_variables_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:dap/dap.dart' as dap; import 'package:devtools_app/devtools_app.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_screen_explorer_visibility_test.dart b/packages/devtools_app/test/screens/debugger/debugger_screen_explorer_visibility_test.dart index 83a728373ef..4c7a9220c47 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_screen_explorer_visibility_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_screen_explorer_visibility_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app_shared/ui.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_screen_paused_test.dart b/packages/devtools_app/test/screens/debugger/debugger_screen_paused_test.dart index 4770d4b0a61..b5837976e99 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_screen_paused_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_screen_paused_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/codeview.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_screen_test.dart b/packages/devtools_app/test/screens/debugger/debugger_screen_test.dart index d946e535157..3e5b2edceb0 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_screen_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_screen_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 'package:collection/collection.dart'; import 'package:devtools_app/devtools_app.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_screen_variables_test.dart b/packages/devtools_app/test/screens/debugger/debugger_screen_variables_test.dart index 74838ed8fc8..0ee4089e899 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_screen_variables_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_screen_variables_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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/shared/diagnostics/tree_builder.dart'; diff --git a/packages/devtools_app/test/screens/debugger/debugger_scripts_test.dart b/packages/devtools_app/test/screens/debugger/debugger_scripts_test.dart index fa968d2ae61..9462133aace 100644 --- a/packages/devtools_app/test/screens/debugger/debugger_scripts_test.dart +++ b/packages/devtools_app/test/screens/debugger/debugger_scripts_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/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/codeview.dart'; diff --git a/packages/devtools_app/test/screens/debugger/eval_field_test.dart b/packages/devtools_app/test/screens/debugger/eval_field_test.dart index 89dafcdff14..f2c5280333a 100644 --- a/packages/devtools_app/test/screens/debugger/eval_field_test.dart +++ b/packages/devtools_app/test/screens/debugger/eval_field_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/screens/debugger/breakpoint_manager.dart'; import 'package:devtools_app/src/service/service_manager.dart'; diff --git a/packages/devtools_app/test/screens/debugger/file_search_test.dart b/packages/devtools_app/test/screens/debugger/file_search_test.dart index d81872fdc26..68839a4feef 100644 --- a/packages/devtools_app/test/screens/debugger/file_search_test.dart +++ b/packages/devtools_app/test/screens/debugger/file_search_test.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 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/file_search.dart'; diff --git a/packages/devtools_app/test/screens/debugger/program_explorer_test.dart b/packages/devtools_app/test/screens/debugger/program_explorer_test.dart index 521299836f1..eea09eb260d 100644 --- a/packages/devtools_app/test/screens/debugger/program_explorer_test.dart +++ b/packages/devtools_app/test/screens/debugger/program_explorer_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:collection/collection.dart'; import 'package:devtools_app/devtools_app.dart'; diff --git a/packages/devtools_app/test/screens/debugger/records_variable_test.dart b/packages/devtools_app/test/screens/debugger/records_variable_test.dart index c390733cf48..9d0fd6403fb 100644 --- a/packages/devtools_app/test/screens/debugger/records_variable_test.dart +++ b/packages/devtools_app/test/screens/debugger/records_variable_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/devtools_app.dart'; import 'package:devtools_app/src/shared/diagnostics/dart_object_node.dart'; diff --git a/packages/devtools_app/test/screens/debugger/span_parser_test.dart b/packages/devtools_app/test/screens/debugger/span_parser_test.dart index 1172f2a796a..b2201a663bd 100644 --- a/packages/devtools_app/test/screens/debugger/span_parser_test.dart +++ b/packages/devtools_app/test/screens/debugger/span_parser_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/screens/debugger/syntax_highlighter_test.dart b/packages/devtools_app/test/screens/debugger/syntax_highlighter_test.dart index 1ffdb7d6d04..b8b8fc1464c 100644 --- a/packages/devtools_app/test/screens/debugger/syntax_highlighter_test.dart +++ b/packages/devtools_app/test/screens/debugger/syntax_highlighter_test.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. @TestOn('vm') library; diff --git a/packages/devtools_app/test/screens/debugger/typed_data_variable_test.dart b/packages/devtools_app/test/screens/debugger/typed_data_variable_test.dart index 5f70edbaf99..dc3c4d34fd3 100644 --- a/packages/devtools_app/test/screens/debugger/typed_data_variable_test.dart +++ b/packages/devtools_app/test/screens/debugger/typed_data_variable_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:convert'; import 'dart:typed_data'; diff --git a/packages/devtools_app/test/screens/debugger/variables_test.dart b/packages/devtools_app/test/screens/debugger/variables_test.dart index 7b02de9d537..832de9f2fbe 100644 --- a/packages/devtools_app/test/screens/debugger/variables_test.dart +++ b/packages/devtools_app/test/screens/debugger/variables_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/devtools_app.dart'; import 'package:devtools_app/src/shared/console/widgets/expandable_variable.dart';