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

Unified Diff: chromeos/ime/input_method_property.cc

Issue 150203015: Split out InputMethodMenuManager from InputMethodManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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_property.h ('k') | chromeos/ime/input_method_property_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/ime/input_method_property.cc
diff --git a/chromeos/ime/input_method_property.cc b/chromeos/ime/input_method_property.cc
deleted file mode 100644
index c37d2181ed1ea538c85d2d04e806035df73215a4..0000000000000000000000000000000000000000
--- a/chromeos/ime/input_method_property.cc
+++ /dev/null
@@ -1,54 +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.
-
-#include "chromeos/ime/input_method_property.h"
-
-#include <sstream>
-
-#include "base/logging.h"
-
-namespace chromeos {
-namespace input_method {
-
-InputMethodProperty::InputMethodProperty(const std::string& in_key,
- const std::string& in_label,
- bool in_is_selection_item,
- bool in_is_selection_item_checked)
- : key(in_key),
- label(in_label),
- is_selection_item(in_is_selection_item),
- is_selection_item_checked(in_is_selection_item_checked) {
- DCHECK(!key.empty());
-}
-
-InputMethodProperty::InputMethodProperty()
- : is_selection_item(false),
- is_selection_item_checked(false) {
-}
-
-InputMethodProperty::~InputMethodProperty() {
-}
-
-bool InputMethodProperty::operator==(const InputMethodProperty& other) const {
- return key == other.key &&
- label == other.label &&
- is_selection_item == other.is_selection_item &&
- is_selection_item_checked == other.is_selection_item_checked;
-}
-
-bool InputMethodProperty::operator!=(const InputMethodProperty& other) const {
- return !(*this == other);
-}
-
-std::string InputMethodProperty::ToString() const {
- std::stringstream stream;
- stream << "key=" << key
- << ", label=" << label
- << ", is_selection_item=" << is_selection_item
- << ", is_selection_item_checked=" << is_selection_item_checked;
- return stream.str();
-}
-
-} // namespace input_method
-} // namespace chromeos
« no previous file with comments | « chromeos/ime/input_method_property.h ('k') | chromeos/ime/input_method_property_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698