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

Unified Diff: cc/test/fake_picture_layer.cc

Issue 1783613004: CC Animation: Erase cc::LayerSettings everywhere. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@eraseandroid
Patch Set: Rebase. Created 4 years, 9 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_picture_layer.h ('k') | cc/test/layer_test_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_picture_layer.cc
diff --git a/cc/test/fake_picture_layer.cc b/cc/test/fake_picture_layer.cc
index 50b9e7d452806ef32e39f9656b485b3a6b36be80..a93e55f4fbfccbc8d68c2ab3744bb02c1d536108 100644
--- a/cc/test/fake_picture_layer.cc
+++ b/cc/test/fake_picture_layer.cc
@@ -8,9 +8,8 @@
namespace cc {
-FakePictureLayer::FakePictureLayer(const LayerSettings& settings,
- ContentLayerClient* client)
- : PictureLayer(settings, client),
+FakePictureLayer::FakePictureLayer(ContentLayerClient* client)
+ : PictureLayer(client),
update_count_(0),
push_properties_count_(0),
always_update_resources_(false) {
@@ -19,10 +18,9 @@ FakePictureLayer::FakePictureLayer(const LayerSettings& settings,
}
FakePictureLayer::FakePictureLayer(
- const LayerSettings& settings,
ContentLayerClient* client,
scoped_ptr<DisplayListRecordingSource> source)
- : PictureLayer(settings, client, std::move(source)),
+ : PictureLayer(client, std::move(source)),
update_count_(0),
push_properties_count_(0),
always_update_resources_(false) {
« no previous file with comments | « cc/test/fake_picture_layer.h ('k') | cc/test/layer_test_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698