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

Unified Diff: ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.cc

Issue 750353004: Revert of Moves code from chromeos/ime to ui/base/ime/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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: ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.cc
diff --git a/ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.cc b/ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.cc
deleted file mode 100644
index 82f6c13e5fd8d69e2715c9967e00b208ad4fad95..0000000000000000000000000000000000000000
--- a/ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.cc
+++ /dev/null
@@ -1,43 +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 "ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h"
-
-#include "base/logging.h"
-#include "ui/base/ime/chromeos/component_extension_ime_manager.h"
-#include "ui/base/ime/chromeos/extension_ime_util.h"
-
-namespace chromeos {
-namespace input_method {
-
-MockComponentExtIMEManagerDelegate::MockComponentExtIMEManagerDelegate()
- : load_call_count_(0),
- unload_call_count_(0) {
-}
-
-MockComponentExtIMEManagerDelegate::~MockComponentExtIMEManagerDelegate() {
-}
-
-std::vector<ComponentExtensionIME>
- MockComponentExtIMEManagerDelegate::ListIME() {
- return ime_list_;
-}
-
-void MockComponentExtIMEManagerDelegate::Load(Profile* profile,
- const std::string& extension_id,
- const std::string& manifest,
- const base::FilePath& path) {
- last_loaded_extension_id_ = extension_id;
- load_call_count_++;
-}
-
-void MockComponentExtIMEManagerDelegate::Unload(Profile* profile,
- const std::string& extension_id,
- const base::FilePath& path) {
- unload_call_count_++;
- last_unloaded_extension_id_ = extension_id;
-}
-
-} // namespace input_method
-} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698