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

Unified Diff: ui/chromeos/ime/input_method_menu_item.h

Issue 727143002: Moves code from chromeos/ime to ui/base/ime/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 6 years, 1 month 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: ui/chromeos/ime/input_method_menu_item.h
diff --git a/ui/chromeos/ime/input_method_menu_item.h b/ui/chromeos/ime/input_method_menu_item.h
deleted file mode 100644
index 016e4b3fcbce4393dc3c1f64a79decac3ed9d2e6..0000000000000000000000000000000000000000
--- a/ui/chromeos/ime/input_method_menu_item.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2014 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_CHROMEOS_IME_INPUT_METHOD_MENU_ITEM_H_
-#define UI_CHROMEOS_IME_INPUT_METHOD_MENU_ITEM_H_
-
-#include <string>
-#include <vector>
-#include "ui/chromeos/ui_chromeos_export.h"
-
-namespace ui {
-namespace ime {
-
-// A structure which represents a property for an input method engine.
-struct UI_CHROMEOS_EXPORT InputMethodMenuItem {
- InputMethodMenuItem(const std::string& in_key,
- const std::string& in_label,
- bool in_is_selection_item,
- bool in_is_selection_item_checked);
-
- InputMethodMenuItem();
- ~InputMethodMenuItem();
-
- bool operator==(const InputMethodMenuItem& other) const;
- bool operator!=(const InputMethodMenuItem& other) const;
-
- // Debug print function.
- std::string ToString() const;
-
- std::string key; // A key which identifies the property. Non-empty string.
- // (e.g. "InputMode.HalfWidthKatakana")
- std::string label; // A description of the property. Non-empty string.
- // (e.g. "Switch to full punctuation mode", "Hiragana")
- bool is_selection_item; // true if the property is a selection item.
- bool is_selection_item_checked; // true if |is_selection_item| is true and
- // the selection_item is selected.
-};
-typedef std::vector<InputMethodMenuItem> InputMethodMenuItemList;
-
-} // namespace ime
-} // namespace ui
-
-#endif // UI_CHROMEOS_IME_INPUT_METHOD_MENU_ITEM_H_

Powered by Google App Engine
This is Rietveld 408576698