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

Unified Diff: Source/core/platform/graphics/GraphicsLayerClient.h

Issue 16509007: Cleanup constants for layerTreeAsText. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: naming Created 7 years, 6 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: Source/core/platform/graphics/GraphicsLayerClient.h
diff --git a/Source/core/platform/graphics/GraphicsLayerClient.h b/Source/core/platform/graphics/GraphicsLayerClient.h
index 277deeb7a9e298eb85983a44b68c7b40dc878c38..662ec203bedc8793b58c8f22702b06097272b795 100644
--- a/Source/core/platform/graphics/GraphicsLayerClient.h
+++ b/Source/core/platform/graphics/GraphicsLayerClient.h
@@ -53,6 +53,14 @@ enum AnimatedPropertyID {
AnimatedPropertyWebkitFilter
};
+enum {
+ LayerTreeNormal = 0,
+ LayerTreeIncludesDebugInfo = 1 << 0, // Dump extra debugging info like layer addresses.
+ LayerTreeIncludesRepaintRects = 1 << 1,
+ LayerTreeIncludesPaintingPhases = 1 << 2
+};
+typedef unsigned LayerTreeFlags;
+
class GraphicsLayerClient {
public:
virtual ~GraphicsLayerClient() {}

Powered by Google App Engine
This is Rietveld 408576698