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

Commit b1ec721

Browse files
committed
license / tidy
1 parent 13077e4 commit b1ec721

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

ci/licenses_golden/excluded_files

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@
140140
../../../flutter/impeller/compiler/shader_bundle_unittests.cc
141141
../../../flutter/impeller/compiler/switches_unittests.cc
142142
../../../flutter/impeller/core/allocator_unittests.cc
143+
../../../flutter/impeller/display_list/dl_golden_unittests.cc
144+
../../../flutter/impeller/display_list/dl_golden_unittests.h
143145
../../../flutter/impeller/display_list/dl_unittests.cc
144146
../../../flutter/impeller/display_list/skia_conversions_unittests.cc
145147
../../../flutter/impeller/docs

impeller/golden_tests/golden_playground_test.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class GoldenPlaygroundTest
4444

4545
bool OpenPlaygroundHere(AiksPlaygroundCallback callback);
4646

47-
bool OpenPlaygroundHere(sk_sp<flutter::DisplayList> list);
47+
bool OpenPlaygroundHere(const sk_sp<flutter::DisplayList>& list);
4848

4949
static bool ImGuiBegin(const char* name,
5050
bool* p_open,

impeller/golden_tests/golden_playground_test_mac.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ bool GoldenPlaygroundTest::OpenPlaygroundHere(
229229
}
230230

231231
bool GoldenPlaygroundTest::OpenPlaygroundHere(
232-
sk_sp<flutter::DisplayList> list) {
232+
const sk_sp<flutter::DisplayList>& list) {
233233
DlDispatcher dispatcher;
234234
list->Dispatch(dispatcher);
235235
Picture picture = dispatcher.EndRecordingAsPicture();

impeller/golden_tests/golden_playground_test_stub.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ bool GoldenPlaygroundTest::OpenPlaygroundHere(
3838
}
3939

4040
bool GoldenPlaygroundTest::OpenPlaygroundHere(
41-
sk_sp<flutter::DisplayList> list) {
41+
const sk_sp<flutter::DisplayList>& list) {
4242
return false;
4343
}
4444

0 commit comments

Comments
 (0)