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 |