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

Unified Diff: cc/test/fake_content_layer.cc

Issue 1122393003: CC: Plumb LayerSettings parameter for cc::Layer construction. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 7 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_content_layer.h ('k') | cc/test/fake_delegated_renderer_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_content_layer.cc
diff --git a/cc/test/fake_content_layer.cc b/cc/test/fake_content_layer.cc
index a0a01eee7fb650074d1c2fe1176359a3d75586a8..52a266247b869e15f01a9555ca005aad0a6e282f 100644
--- a/cc/test/fake_content_layer.cc
+++ b/cc/test/fake_content_layer.cc
@@ -18,8 +18,9 @@ class FakeContentLayerUpdater : public ContentLayerUpdater {
~FakeContentLayerUpdater() override {}
};
-FakeContentLayer::FakeContentLayer(ContentLayerClient* client)
- : ContentLayer(client),
+FakeContentLayer::FakeContentLayer(const LayerSettings& settings,
+ ContentLayerClient* client)
+ : ContentLayer(settings, client),
update_count_(0),
push_properties_count_(0),
output_surface_created_count_(0),
« no previous file with comments | « cc/test/fake_content_layer.h ('k') | cc/test/fake_delegated_renderer_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698