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

Unified Diff: cc/test/fake_picture_pile_impl.cc

Issue 913203006: cc: Calculate "can use lcd text" on the compositor thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
Index: cc/test/fake_picture_pile_impl.cc
diff --git a/cc/test/fake_picture_pile_impl.cc b/cc/test/fake_picture_pile_impl.cc
index 8353d271ee25a35d3bbbf706c40bb4c9d663c31b..ab255cc2eef60e24deb8e4690c71fe684ce5cf57 100644
--- a/cc/test/fake_picture_pile_impl.cc
+++ b/cc/test/fake_picture_pile_impl.cc
@@ -21,7 +21,7 @@ FakePicturePileImpl::FakePicturePileImpl() : playback_allowed_event_(nullptr) {
FakePicturePileImpl::FakePicturePileImpl(
const PicturePile* other,
base::WaitableEvent* playback_allowed_event)
- : PicturePileImpl(other),
+ : PicturePileImpl(other, true),
danakj 2015/02/18 19:54:47 /* can_use_lcd_text */ ?
enne (OOO) 2015/02/18 19:59:05 The value here is irrelevant, so I don't think the
playback_allowed_event_(playback_allowed_event),
tile_grid_size_(other->GetTileGridSizeForTesting()) {
}

Powered by Google App Engine
This is Rietveld 408576698