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

Unified Diff: third_party/WebKit/Source/core/editing/DragCaret.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
Index: third_party/WebKit/Source/core/editing/DragCaret.cpp
diff --git a/third_party/WebKit/Source/core/editing/DragCaret.cpp b/third_party/WebKit/Source/core/editing/DragCaret.cpp
index e7aeb22365f0151cfc4cf6d3f1d3c19ca564193c..1b7564c60ca6586707dd81ff0b6e60698b2bd945 100644
--- a/third_party/WebKit/Source/core/editing/DragCaret.cpp
+++ b/third_party/WebKit/Source/core/editing/DragCaret.cpp
@@ -55,10 +55,10 @@ void DragCaret::updateStyleAndLayoutIfNeeded() {
: PositionWithAffinity());
}
-void DragCaret::invalidatePaintIfNeeded(const LayoutBlock& block,
- const PaintInvalidatorContext& context,
- PaintInvalidationReason reason) {
- m_displayItemClient->invalidatePaintIfNeeded(block, context, reason);
+void DragCaret::invalidatePaintIfNeeded(
+ const LayoutBlock& block,
+ const PaintInvalidatorContext& context) {
+ m_displayItemClient->invalidatePaintIfNeeded(block, context);
}
bool DragCaret::isContentRichlyEditable() const {
« no previous file with comments | « third_party/WebKit/Source/core/editing/DragCaret.h ('k') | third_party/WebKit/Source/core/editing/FrameCaret.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698