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

Unified Diff: third_party/WebKit/public/platform/WebTextInputType.h

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Created 3 years, 8 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/public/platform/WebTextInputType.h
diff --git a/third_party/WebKit/public/platform/WebTextInputType.h b/third_party/WebKit/public/platform/WebTextInputType.h
index 38dd0b128accafe7b182835d02c9cbcf1fa1754c..b7ef9f9ab19723a8abba6fb6574f75f21994dae2 100644
--- a/third_party/WebKit/public/platform/WebTextInputType.h
+++ b/third_party/WebKit/public/platform/WebTextInputType.h
@@ -86,7 +86,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
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698