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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.cpp

Issue 2345233004: Reuse cc::PictureLayers when possible for SPv2. (Closed)
Patch Set: none Created 4 years, 3 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: third_party/WebKit/Source/core/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index edca61dc55e4867b12316f582ac82bdd08535666..6320b7500e1c872108659651b468cbcf82646c14 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -1082,6 +1082,7 @@ String LayoutObject::debugName() const
name.append(' ');
name.append(node->debugName());
}
+ name.append(String::format(" %p", this));
Xianzhu 2016/09/20 23:13:41 The output of debugName() is used in layout test o
chrishtr 2016/09/20 23:43:59 Good point. Removed.
return name.toString();
}

Powered by Google App Engine
This is Rietveld 408576698