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

Unified Diff: third_party/WebKit/Source/core/paint/TablePaintInvalidator.h

Issue 2208463003: First step of PaintInvalidator implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: - Created 4 years, 4 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: third_party/WebKit/Source/core/paint/TablePaintInvalidator.h
diff --git a/third_party/WebKit/Source/core/paint/TablePaintInvalidator.h b/third_party/WebKit/Source/core/paint/TablePaintInvalidator.h
new file mode 100644
index 0000000000000000000000000000000000000000..11020f15c88ce8a9d58e0b81c984ee06ff112f25
--- /dev/null
+++ b/third_party/WebKit/Source/core/paint/TablePaintInvalidator.h
@@ -0,0 +1,31 @@
+// Copyright 2016 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 TablePaintInvalidator_h
+#define TablePaintInvalidator_h
+
+#include "platform/graphics/PaintInvalidationReason.h"
+#include "wtf/Allocator.h"
+
+namespace blink {
+
+class LayoutTable;
+struct PaintInvalidatorContext;
+
+class TablePaintInvalidator {
+ STACK_ALLOCATED();
+public:
+ TablePaintInvalidator(const LayoutTable& table, const PaintInvalidatorContext& context)
+ : m_table(table), m_context(context) { }
+
+ PaintInvalidationReason invalidatePaintIfNeeded();
+
+private:
+ const LayoutTable& m_table;
+ const PaintInvalidatorContext& m_context;
+};
+
+} // namespace blink
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698