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

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

Issue 2392463002: DO NOT SUBMIT: Fix input action type for Android
Patch Set: Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebTextInputType.h
diff --git a/third_party/WebKit/public/web/WebTextInputType.h b/third_party/WebKit/public/web/WebTextInputType.h
index 4e0aead0cf657d709e84bd4f43998a09bd2b16c8..73f9625a6ffb2bc1c19a78d94b716973ce1aa8f4 100644
--- a/third_party/WebKit/public/web/WebTextInputType.h
+++ b/third_party/WebKit/public/web/WebTextInputType.h
@@ -86,7 +86,11 @@ enum WebTextInputFlags {
WebTextInputFlagAutocapitalizeNone = 1 << 6,
WebTextInputFlagAutocapitalizeCharacters = 1 << 7,
WebTextInputFlagAutocapitalizeWords = 1 << 8,
- WebTextInputFlagAutocapitalizeSentences = 1 << 9
+ WebTextInputFlagAutocapitalizeSentences = 1 << 9,
+ WebTextInputFlagActionNone = 1 << 10,
+ WebTextInputFlagActionGo = 1 << 11,
+ WebTextInputFlagActionNext = 1 << 12,
+ WebTextInputFlagActionSearch = 1 << 13
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698