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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.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
Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
index 1a8f4233a7c81b0233a4628a9a24e7ef2ece3a88..5aa2ad61a93abb2c065b82f57230e1ec46eeaa98 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h
@@ -72,8 +72,9 @@ class PLATFORM_EXPORT DisplayItemList
enum JsonOptions {
Default = 0,
ShowPictures = 1,
- SkipNonDrawings = 2,
- ShowClientDebugName = 4,
+ SkipNonDrawings = 1 << 1,
+ ShowClientDebugName = 1 << 2,
+ ShownOnlyDisplayItemTypes = 1 << 3
};
typedef unsigned JsonFlags;

Powered by Google App Engine
This is Rietveld 408576698