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

Unified Diff: cc/resources/picture_pile_impl.cc

Issue 648293006: cc: turn on distance field text on animated layers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "removed test code" Created 6 years, 2 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/resources/picture_pile_impl.cc
diff --git a/cc/resources/picture_pile_impl.cc b/cc/resources/picture_pile_impl.cc
index f4fbdf2d014eaee8a2ad44125d267b4b077be4dd..c49dd7f7166876c545d3c3cf5f95c7f3d775f8f6 100644
--- a/cc/resources/picture_pile_impl.cc
+++ b/cc/resources/picture_pile_impl.cc
@@ -28,11 +28,12 @@ scoped_refptr<PicturePileImpl> PicturePileImpl::CreateFromOther(
return make_scoped_refptr(new PicturePileImpl(other));
}
-PicturePileImpl::PicturePileImpl() {
+PicturePileImpl::PicturePileImpl()
+ : will_be_used_for_transform_animation_(false) {
}
PicturePileImpl::PicturePileImpl(const PicturePileBase* other)
- : PicturePileBase(other) {
+ : PicturePileBase(other), will_be_used_for_transform_animation_(false) {
}
PicturePileImpl::~PicturePileImpl() {

Powered by Google App Engine
This is Rietveld 408576698