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

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

Issue 2852573002: Rename InvalidatePaintIfNeeded to drop deprecated IfNeeded suffix. (Closed)
Patch Set: Created 3 years, 8 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.cpp
diff --git a/third_party/WebKit/Source/core/paint/TablePaintInvalidator.cpp b/third_party/WebKit/Source/core/paint/TablePaintInvalidator.cpp
index e7465f70706d7a09e6844ff6ca56bbf105b4cdec..201ccea1993bc93e8a7f56ab1bbca821cde6a200 100644
--- a/third_party/WebKit/Source/core/paint/TablePaintInvalidator.cpp
+++ b/third_party/WebKit/Source/core/paint/TablePaintInvalidator.cpp
@@ -14,9 +14,9 @@
namespace blink {
-PaintInvalidationReason TablePaintInvalidator::InvalidatePaintIfNeeded() {
+PaintInvalidationReason TablePaintInvalidator::InvalidatePaint() {
PaintInvalidationReason reason =
- BoxPaintInvalidator(table_, context_).InvalidatePaintIfNeeded();
+ BoxPaintInvalidator(table_, context_).InvalidatePaint();
// If any col changed background, we need to invalidate all sections because
// col background paints into section's background display item.

Powered by Google App Engine
This is Rietveld 408576698