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

Unified Diff: chromeos/ime/mock_ime_candidate_window_handler.h

Issue 24946003: Rename IBusLookupTable to CandidateWindow, and move it to chromeos/ime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 7 years, 2 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/ibus_bridge.h ('k') | chromeos/ime/mock_ime_candidate_window_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/ime/mock_ime_candidate_window_handler.h
diff --git a/chromeos/ime/mock_ime_candidate_window_handler.h b/chromeos/ime/mock_ime_candidate_window_handler.h
index 6ee51e59049adea171e8912f50b31f8201742eb0..6ade3bb114dc10e680615e74579ce749bc440e55 100644
--- a/chromeos/ime/mock_ime_candidate_window_handler.h
+++ b/chromeos/ime/mock_ime_candidate_window_handler.h
@@ -5,7 +5,7 @@
#ifndef CHROMEOS_IME_MOCK_IME_CANDIDATE_WINDOW_HANDLER_H_
#define CHROMEOS_IME_MOCK_IME_CANDIDATE_WINDOW_HANDLER_H_
-#include "chromeos/dbus/ibus/ibus_lookup_table.h"
+#include "chromeos/ime/candidate_window.h"
#include "chromeos/ime/ibus_bridge.h"
namespace chromeos {
@@ -14,7 +14,7 @@ class MockIMECandidateWindowHandler
: public IBusPanelCandidateWindowHandlerInterface {
public:
struct UpdateLookupTableArg {
- IBusLookupTable lookup_table;
+ input_method::CandidateWindow lookup_table;
bool is_visible;
};
@@ -27,8 +27,9 @@ class MockIMECandidateWindowHandler
virtual ~MockIMECandidateWindowHandler();
// IBusPanelCandidateWindowHandlerInterface override.
- virtual void UpdateLookupTable(const IBusLookupTable& table,
- bool visible) OVERRIDE;
+ virtual void UpdateLookupTable(
+ const input_method::CandidateWindow& candidate_window,
+ bool visible) OVERRIDE;
virtual void HideLookupTable() OVERRIDE;
virtual void UpdateAuxiliaryText(const std::string& text,
bool visible) OVERRIDE;
« no previous file with comments | « chromeos/ime/ibus_bridge.h ('k') | chromeos/ime/mock_ime_candidate_window_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698