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

Unified Diff: ash/ime/input_method_menu_item.cc

Issue 680383008: Move ash/ime to ui/chromeos/ime (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@athena_do_not_use_ash48_global_command
Patch Set: 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: ash/ime/input_method_menu_item.cc
diff --git a/ash/ime/input_method_menu_item.cc b/ash/ime/input_method_menu_item.cc
deleted file mode 100644
index 6337ec5638e3784c1e1230c1ea91b558f87a92e0..0000000000000000000000000000000000000000
--- a/ash/ime/input_method_menu_item.cc
+++ /dev/null
@@ -1,54 +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.
-
-#include "ash/ime/input_method_menu_item.h"
-
-#include <sstream>
-
-#include "base/logging.h"
-
-namespace ash {
-namespace ime {
-
-InputMethodMenuItem::InputMethodMenuItem(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());
-}
-
-InputMethodMenuItem::InputMethodMenuItem()
- : is_selection_item(false),
- is_selection_item_checked(false) {
-}
-
-InputMethodMenuItem::~InputMethodMenuItem() {
-}
-
-bool InputMethodMenuItem::operator==(const InputMethodMenuItem& 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 InputMethodMenuItem::operator!=(const InputMethodMenuItem& other) const {
- return !(*this == other);
-}
-
-std::string InputMethodMenuItem::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 ime
-} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698