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

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

Issue 1780523006: Add tests for input.ime.* APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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_engine_browsertests.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc b/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc
index 50c28a907e21285a56508b2507ae9194e63296ce..0ed2a7eda9c045cb611d5469df8264619bb0ed2e 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc
+++ b/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc
@@ -19,10 +19,10 @@
#include "ui/base/ime/chromeos/input_method_descriptor.h"
#include "ui/base/ime/chromeos/input_method_manager.h"
#include "ui/base/ime/chromeos/mock_ime_candidate_window_handler.h"
-#include "ui/base/ime/chromeos/mock_ime_input_context_handler.h"
#include "ui/base/ime/composition_text.h"
#include "ui/base/ime/ime_bridge.h"
#include "ui/base/ime/ime_engine_handler_interface.h"
+#include "ui/base/ime/mock_ime_input_context_handler.h"
#include "ui/base/ime/text_input_flags.h"
#include "ui/chromeos/ime/input_method_menu_item.h"
#include "ui/chromeos/ime/input_method_menu_manager.h"
@@ -157,8 +157,8 @@ IN_PROC_BROWSER_TEST_P(InputMethodEngineBrowserTest,
InputMethodManager::Get()->GetActiveIMEState()->ChangeInputMethod(
kIdentityIMEID, false /* show_message */);
- scoped_ptr<MockIMEInputContextHandler> mock_input_context(
- new MockIMEInputContextHandler());
+ scoped_ptr<ui::MockIMEInputContextHandler> mock_input_context(
+ new ui::MockIMEInputContextHandler());
scoped_ptr<MockIMECandidateWindowHandler> mock_candidate_window(
new MockIMECandidateWindowHandler());
@@ -240,8 +240,8 @@ IN_PROC_BROWSER_TEST_P(InputMethodEngineBrowserTest,
InputMethodManager::Get()->GetActiveIMEState()->ChangeInputMethod(
kAPIArgumentIMEID, false /* show_message */);
- scoped_ptr<MockIMEInputContextHandler> mock_input_context(
- new MockIMEInputContextHandler());
+ scoped_ptr<ui::MockIMEInputContextHandler> mock_input_context(
+ new ui::MockIMEInputContextHandler());
scoped_ptr<MockIMECandidateWindowHandler> mock_candidate_window(
new MockIMECandidateWindowHandler());

Powered by Google App Engine
This is Rietveld 408576698