// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_BASE_IME_TEXT_INPUT_TYPE_H_ #define UI_BASE_IME_TEXT_INPUT_TYPE_H_ namespace ui { // TextInputType is the enum type representing every type of text input fields. // TextInputType should include all types defined in blink::WebTextInputType // defined in: third_party/WebKit/public/platform/WebTextInputType.h // // A Java counterpart will be generated for this enum. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.ui.base.ime enum TextInputType { … }; } // namespace ui #endif // UI_BASE_IME_TEXT_INPUT_TYPE_H_