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

Unified Diff: Source/core/editing/Editor.h

Issue 21694005: Spell check whole content of an editable element when it gets focused. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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: Source/core/editing/Editor.h
diff --git a/Source/core/editing/Editor.h b/Source/core/editing/Editor.h
index 60cd39882693cb25c41d6844828420e6ae501064..6c266d5e80afec77252bd05198d7e582c734459d 100644
--- a/Source/core/editing/Editor.h
+++ b/Source/core/editing/Editor.h
@@ -227,8 +227,8 @@ public:
bool canRedo();
void redo();
- void didBeginEditing();
- void didEndEditing();
+ void didBeginEditing(Element*);
+ void didEndEditing(Element*);
void setBaseWritingDirection(WritingDirection);
@@ -313,6 +313,7 @@ public:
bool markedTextMatchesAreHighlighted() const;
void setMarkedTextMatchesAreHighlighted(bool);
+ void textAreaDidBeginEditing(Element*);
void textFieldDidBeginEditing(Element*);
void textFieldDidEndEditing(Element*);
void textDidChangeInTextField(Element*);

Powered by Google App Engine
This is Rietveld 408576698