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

Unified Diff: public/web/WebTextInputType.h

Issue 939603002: Adding support for Smart GO NEXT feature in Android Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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: public/web/WebTextInputType.h
diff --git a/public/web/WebTextInputType.h b/public/web/WebTextInputType.h
index b437f12153e485bfc38819be13781c6db3a5d690..06eec692a0e03ab13da73b467d8a80b89ec2a2c2 100644
--- a/public/web/WebTextInputType.h
+++ b/public/web/WebTextInputType.h
@@ -78,7 +78,10 @@ enum WebTextInputFlags {
WebTextInputFlagAutocorrectOn = 1 << 2,
WebTextInputFlagAutocorrectOff = 1 << 3,
WebTextInputFlagSpellcheckOn = 1 << 4,
- WebTextInputFlagSpellcheckOff = 1 << 5
+ WebTextInputFlagSpellcheckOff = 1 << 5,
+ WebTextInputFlagWantEnterEvents = 1 << 6,
+ WebTextInputFlagHaveNextInput = 1 << 7,
+ WebTextInputFlagHavePreviousInput = 1 << 8,
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698