| 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;
|
|
|
|
|