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

Unified Diff: chromeos/ime/input_method_property.h

Issue 165783002: Reland of: Split out InputMethodMenuManager from InputMethodManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comment; spelling Created 6 years, 10 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 | « chromeos/ime/input_method_manager.h ('k') | chromeos/ime/input_method_property.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/ime/input_method_property.h
diff --git a/chromeos/ime/input_method_property.h b/chromeos/ime/input_method_property.h
deleted file mode 100644
index 25355d1087fe59e2f35f58961fd8eb4b6b69273d..0000000000000000000000000000000000000000
--- a/chromeos/ime/input_method_property.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2013 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 CHROMEOS_IME_INPUT_METHOD_PROPERTY_H_
-#define CHROMEOS_IME_INPUT_METHOD_PROPERTY_H_
-
-#include <string>
-#include <vector>
-#include "chromeos/chromeos_export.h"
-
-namespace chromeos {
-namespace input_method {
-
-// A structure which represents a property for an input method engine.
-struct CHROMEOS_EXPORT InputMethodProperty {
- InputMethodProperty(const std::string& in_key,
- const std::string& in_label,
- bool in_is_selection_item,
- bool in_is_selection_item_checked);
-
- InputMethodProperty();
- ~InputMethodProperty();
-
- bool operator==(const InputMethodProperty& other) const;
- bool operator!=(const InputMethodProperty& 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<InputMethodProperty> InputMethodPropertyList;
-
-} // namespace input_method
-} // namespace chromeos
-
-#endif // CHROMEOS_IME_INPUT_METHOD_PROPERTY_H_
« no previous file with comments | « chromeos/ime/input_method_manager.h ('k') | chromeos/ime/input_method_property.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698