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

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: Fixed review comments in unit tests. Created 5 years, 6 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 8bd37c04de3452813a4d2718470616d3cad3f421..8c41e11afef4914e9030bc14d8f148e23845acf0 100644
--- a/public/web/WebTextInputType.h
+++ b/public/web/WebTextInputType.h
@@ -85,7 +85,10 @@ enum WebTextInputFlags {
WebTextInputFlagAutocapitalizeNone = 1 << 6,
WebTextInputFlagAutocapitalizeCharacters = 1 << 7,
WebTextInputFlagAutocapitalizeWords = 1 << 8,
- WebTextInputFlagAutocapitalizeSentences = 1 << 9
+ WebTextInputFlagAutocapitalizeSentences = 1 << 9,
+ WebTextInputFlagListeningToKeyboardEvents = 1 << 10,
+ WebTextInputFlagHaveNextFocusableElement = 1 << 11,
+ WebTextInputFlagHavePreviousFocusableElement = 1 << 12,
kochi 2015/07/03 04:10:35 nit: to match the original code's style, you can o
AKV 2015/07/26 15:56:34 Done.
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698