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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.h

Issue 2577123002: Add optional debugging output of what paint chunks go into what layers. (Closed)
Patch Set: none Created 4 years 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 | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameView.h
diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
index f3496595a49b91242f2929265d357eb26dab8317..749f2d99b9a53621278905758c8d64c43fd1c886 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.h
+++ b/third_party/WebKit/Source/core/frame/FrameView.h
@@ -358,6 +358,10 @@ class CORE_EXPORT FrameView final
static void setInitialTracksPaintInvalidationsForTesting(bool);
+ void setIsStoringCompositedLayerDebugInfo(bool val) {
+ m_isStoringCompositedLayerDebugInfo = val;
+ }
+
// These methods are for testing.
void setTracksPaintInvalidations(bool);
bool isTrackingPaintInvalidations() const {
@@ -1132,6 +1136,7 @@ class CORE_EXPORT FrameView final
// For Slimming Paint v2 only.
std::unique_ptr<PaintController> m_paintController;
std::unique_ptr<PaintArtifactCompositor> m_paintArtifactCompositor;
+ bool m_isStoringCompositedLayerDebugInfo;
};
inline void FrameView::incrementVisuallyNonEmptyCharacterCount(unsigned count) {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698