Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit ac62400

Browse files
committed
Fix copyright headers
1 parent 3a2ccfe commit ac62400

23 files changed

+35
-22
lines changed

ci/licenses_golden/licenses_flutter

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,33 @@ FILE: ../../../flutter/flow/instrumentation.cc
3030
FILE: ../../../flutter/flow/instrumentation.h
3131
FILE: ../../../flutter/flow/layers/backdrop_filter_layer.cc
3232
FILE: ../../../flutter/flow/layers/backdrop_filter_layer.h
33+
FILE: ../../../flutter/flow/layers/backdrop_filter_layer_unittests.cc
3334
FILE: ../../../flutter/flow/layers/child_scene_layer.cc
3435
FILE: ../../../flutter/flow/layers/child_scene_layer.h
3536
FILE: ../../../flutter/flow/layers/clip_path_layer.cc
3637
FILE: ../../../flutter/flow/layers/clip_path_layer.h
38+
FILE: ../../../flutter/flow/layers/clip_path_layer_unittests.cc
3739
FILE: ../../../flutter/flow/layers/clip_rect_layer.cc
3840
FILE: ../../../flutter/flow/layers/clip_rect_layer.h
41+
FILE: ../../../flutter/flow/layers/clip_rect_layer_unittests.cc
3942
FILE: ../../../flutter/flow/layers/clip_rrect_layer.cc
4043
FILE: ../../../flutter/flow/layers/clip_rrect_layer.h
44+
FILE: ../../../flutter/flow/layers/clip_rrect_layer_unittests.cc
4145
FILE: ../../../flutter/flow/layers/color_filter_layer.cc
4246
FILE: ../../../flutter/flow/layers/color_filter_layer.h
47+
FILE: ../../../flutter/flow/layers/color_filter_layer_unittests.cc
4348
FILE: ../../../flutter/flow/layers/container_layer.cc
4449
FILE: ../../../flutter/flow/layers/container_layer.h
50+
FILE: ../../../flutter/flow/layers/container_layer_unittests.cc
4551
FILE: ../../../flutter/flow/layers/layer.cc
4652
FILE: ../../../flutter/flow/layers/layer.h
4753
FILE: ../../../flutter/flow/layers/layer_tree.cc
4854
FILE: ../../../flutter/flow/layers/layer_tree.h
55+
FILE: ../../../flutter/flow/layers/layer_tree_unittests.cc
4956
FILE: ../../../flutter/flow/layers/layer_unittests.cc
5057
FILE: ../../../flutter/flow/layers/opacity_layer.cc
5158
FILE: ../../../flutter/flow/layers/opacity_layer.h
59+
FILE: ../../../flutter/flow/layers/opacity_layer_unittests.cc
5260
FILE: ../../../flutter/flow/layers/performance_overlay_layer.cc
5361
FILE: ../../../flutter/flow/layers/performance_overlay_layer.h
5462
FILE: ../../../flutter/flow/layers/performance_overlay_layer_unittests.cc
@@ -57,14 +65,19 @@ FILE: ../../../flutter/flow/layers/physical_shape_layer.h
5765
FILE: ../../../flutter/flow/layers/physical_shape_layer_unittests.cc
5866
FILE: ../../../flutter/flow/layers/picture_layer.cc
5967
FILE: ../../../flutter/flow/layers/picture_layer.h
68+
FILE: ../../../flutter/flow/layers/picture_layer_unittests.cc
6069
FILE: ../../../flutter/flow/layers/platform_view_layer.cc
6170
FILE: ../../../flutter/flow/layers/platform_view_layer.h
71+
FILE: ../../../flutter/flow/layers/platform_view_layer_unittests.cc
6272
FILE: ../../../flutter/flow/layers/shader_mask_layer.cc
6373
FILE: ../../../flutter/flow/layers/shader_mask_layer.h
74+
FILE: ../../../flutter/flow/layers/shader_mask_layer_unittests.cc
6475
FILE: ../../../flutter/flow/layers/texture_layer.cc
6576
FILE: ../../../flutter/flow/layers/texture_layer.h
77+
FILE: ../../../flutter/flow/layers/texture_layer_unittests.cc
6678
FILE: ../../../flutter/flow/layers/transform_layer.cc
6779
FILE: ../../../flutter/flow/layers/transform_layer.h
80+
FILE: ../../../flutter/flow/layers/transform_layer_unittests.cc
6881
FILE: ../../../flutter/flow/matrix_decomposition.cc
6982
FILE: ../../../flutter/flow/matrix_decomposition.h
7083
FILE: ../../../flutter/flow/matrix_decomposition_unittests.cc

flow/layers/backdrop_filter_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/clip_path_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/clip_rect_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/clip_rrect_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/color_filter_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/container_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/layer_tree_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/opacity_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

flow/layers/picture_layer_unittests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Flutter Authors. All rights reserved.
1+
// Copyright 2013 The Flutter Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

0 commit comments

Comments
 (0)