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

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2665823002: Invalidate caret during paint invalidation (Closed)
Patch Set: - Created 3 years, 11 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/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 987f43e2c966951bc6e1f3cf4a3d0644d1e95c0b..0e17596bca3d8d1dc47b89537a7e63c06d538df1 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -4245,11 +4245,6 @@ void Document::nodeWillBeRemoved(Node& n) {
styleEngine().elementWillBeRemoved(toElement(n));
}
-void Document::dataWillChange(const CharacterData& characterData) {
- if (LocalFrame* frame = this->frame())
- frame->selection().dataWillChange(characterData);
-}
-
void Document::didInsertText(Node* text, unsigned offset, unsigned length) {
for (Range* range : m_ranges)
range->didInsertText(text, offset, length);

Powered by Google App Engine
This is Rietveld 408576698