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

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

Issue 2745793002: Fix caret paint invalidation issues (Closed)
Patch Set: Created 3 years, 9 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 | « third_party/WebKit/Source/core/editing/FrameSelection.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/BlockPaintInvalidator.cpp
diff --git a/third_party/WebKit/Source/core/paint/BlockPaintInvalidator.cpp b/third_party/WebKit/Source/core/paint/BlockPaintInvalidator.cpp
index a7db1ebc07582f9155c043387afdb4ca3b9cccfa..17c818d58ea6f89c5c8554cb0a0cceefa685440d 100644
--- a/third_party/WebKit/Source/core/paint/BlockPaintInvalidator.cpp
+++ b/third_party/WebKit/Source/core/paint/BlockPaintInvalidator.cpp
@@ -25,11 +25,11 @@ PaintInvalidationReason BlockPaintInvalidator::invalidatePaintIfNeeded(
PaintInvalidationReason reason =
BoxPaintInvalidator(m_block, context).invalidatePaintIfNeeded();
- m_block.frame()->selection().invalidatePaintIfNeeded(m_block, context,
- reason);
- m_block.frame()->page()->dragCaret().invalidatePaintIfNeeded(m_block, context,
- reason);
+ m_block.frame()->selection().invalidatePaintIfNeeded(m_block, context);
+ m_block.frame()->page()->dragCaret().invalidatePaintIfNeeded(m_block,
+ context);
return reason;
}
-}
+
+} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/editing/FrameSelection.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698