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

Unified Diff: ui/base/ime/text_input_type.h

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/base/ime/text_input_mode.h ('k') | ui/base/ime/win/imm32_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/text_input_type.h
diff --git a/ui/base/ime/text_input_type.h b/ui/base/ime/text_input_type.h
deleted file mode 100644
index c97568f60024a537ccea63de9d2d7fb757605358..0000000000000000000000000000000000000000
--- a/ui/base/ime/text_input_type.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// 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 {
-
-// Intentionally keep sync with blink::WebTextInputType defined in:
-// third_party/WebKit/public/web/WebTextInputType.h
-enum TextInputType {
- // Input caret is not in an editable node, no input method shall be used.
- TEXT_INPUT_TYPE_NONE,
-
- // Input caret is in a normal editable node, any input method can be used.
- TEXT_INPUT_TYPE_TEXT,
-
- // Input caret is in a password box, an input method may be used only if
- // it's suitable for password input.
- TEXT_INPUT_TYPE_PASSWORD,
-
- TEXT_INPUT_TYPE_SEARCH,
- TEXT_INPUT_TYPE_EMAIL,
- TEXT_INPUT_TYPE_NUMBER,
- TEXT_INPUT_TYPE_TELEPHONE,
- TEXT_INPUT_TYPE_URL,
- TEXT_INPUT_TYPE_DATE,
- TEXT_INPUT_TYPE_DATE_TIME,
- TEXT_INPUT_TYPE_DATE_TIME_LOCAL,
- TEXT_INPUT_TYPE_MONTH,
- TEXT_INPUT_TYPE_TIME,
- TEXT_INPUT_TYPE_WEEK,
- TEXT_INPUT_TYPE_TEXT_AREA,
-
- // Input caret is in a contenteditable node (not an INPUT field).
- TEXT_INPUT_TYPE_CONTENT_EDITABLE,
-
- // The focused node is date time field. The date time field does not have
- // input caret but it is necessary to distinguish from TEXT_INPUT_TYPE_NONE
- // for on-screen keyboard.
- TEXT_INPUT_TYPE_DATE_TIME_FIELD,
-
- TEXT_INPUT_TYPE_MAX = TEXT_INPUT_TYPE_DATE_TIME_FIELD,
-};
-
-} // namespace ui
-
-#endif // UI_BASE_IME_TEXT_INPUT_TYPE_H_
« no previous file with comments | « ui/base/ime/text_input_mode.h ('k') | ui/base/ime/win/imm32_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698