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

Unified Diff: public/platform/WebInvalidationDebugAnnotations.h

Issue 498193003: Add |GraphicsLayerDebugInfo::getAnnotatedInvalidationRects| (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tkent-san review Created 6 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
« no previous file with comments | « public/platform/WebGraphicsLayerDebugInfo.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebInvalidationDebugAnnotations.h
diff --git a/public/platform/WebInvalidationDebugAnnotations.h b/public/platform/WebInvalidationDebugAnnotations.h
new file mode 100644
index 0000000000000000000000000000000000000000..6385d8325bb1691176156771b9c35e426155e195
--- /dev/null
+++ b/public/platform/WebInvalidationDebugAnnotations.h
@@ -0,0 +1,25 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WebInvalidationDebugAnnotations_h
+#define WebInvalidationDebugAnnotations_h
+
+#include "public/platform/WebFloatRect.h"
+
+namespace blink {
+
+enum WebInvalidationDebugAnnotations {
+ WebInvalidationDebugAnnotationsNone = 0,
+ WebInvalidationDebugAnnotationsFirstPaint = 1 << 0,
+ WebInvalidationDebugAnnotationsScrollbar = 1 << 1,
+};
+
+struct WebAnnotatedInvalidationRect {
+ WebFloatRect rect;
+ WebInvalidationDebugAnnotations annotations;
+};
+
+} // namespace blink
+
+#endif // WebInvalidationDebugAnnotations_h
« no previous file with comments | « public/platform/WebGraphicsLayerDebugInfo.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698