Chromium Code Reviews| 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 |