Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Unified Diff: cc/test/fake_recording_source.cc

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from vmpstr, including adding //cc/blimp Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/fake_layer_tree_host.h ('k') | cc/test/layer_tree_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_recording_source.cc
diff --git a/cc/test/fake_recording_source.cc b/cc/test/fake_recording_source.cc
index 45057f301fc0b8e1c51d651282cb3e3541016f3a..01e4fd01bb37dc1acc595503a1154d522efd1bfd 100644
--- a/cc/test/fake_recording_source.cc
+++ b/cc/test/fake_recording_source.cc
@@ -31,7 +31,7 @@ bool FakeRecordingSource::EqualsTo(const FakeRecordingSource& other) {
bool display_lists_equal = !display_list_ && !other.display_list_;
if (display_list_ && other.display_list_) {
display_lists_equal = AreDisplayListDrawingResultsSame(
- recorded_viewport_, display_list_, other.display_list_);
+ recorded_viewport_, display_list_.get(), other.display_list_.get());
}
return recorded_viewport_ == other.recorded_viewport_ &&
« no previous file with comments | « cc/test/fake_layer_tree_host.h ('k') | cc/test/layer_tree_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698