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

Unified Diff: chrome/browser/chromeos/input_method/input_method_configuration_unittest.cc

Issue 2605843002: Add MockInputMethodManager under ui/base/ime/chromeos/ (Closed)
Patch Set: Addressed comments. Created 3 years, 11 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
Index: chrome/browser/chromeos/input_method/input_method_configuration_unittest.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_configuration_unittest.cc b/chrome/browser/chromeos/input_method/input_method_configuration_unittest.cc
index f1175289b2fe9d5ab7a37ea152bab7147bb3a4ff..11385e44ad31c8f1da6347e606ef7ba4aee1e786 100644
--- a/chrome/browser/chromeos/input_method/input_method_configuration_unittest.cc
+++ b/chrome/browser/chromeos/input_method/input_method_configuration_unittest.cc
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "chrome/browser/chromeos/input_method/input_method_configuration.h"
-#include "chrome/browser/chromeos/input_method/mock_input_method_manager.h"
+#include "chrome/browser/chromeos/input_method/mock_input_method_manager_impl.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace chromeos {
@@ -23,7 +23,7 @@ TEST(InputMethodConfigurationTest, TestInitializeForTesting) {
InputMethodManager* manager = InputMethodManager::Get();
EXPECT_FALSE(manager);
- InitializeForTesting(new MockInputMethodManager);
+ InitializeForTesting(new MockInputMethodManagerImpl);
manager = InputMethodManager::Get();
EXPECT_TRUE(manager);
Shutdown();

Powered by Google App Engine
This is Rietveld 408576698