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

Unified Diff: chrome/browser/chromeos/input_method/input_method_engine_ibus.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
Index: chrome/browser/chromeos/input_method/input_method_engine_ibus.h
diff --git a/chrome/browser/chromeos/input_method/input_method_engine_ibus.h b/chrome/browser/chromeos/input_method/input_method_engine_ibus.h
index 812d566cfc7a7e04b1687da5adf69288ccba2de4..3279496a9c6ec11526acf14b91259a2f7f0960a1 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine_ibus.h
+++ b/chrome/browser/chromeos/input_method/input_method_engine_ibus.h
@@ -17,11 +17,11 @@
namespace chromeos {
class IBusComponent;
-class IBusLookupTable;
class IBusText;
class IBusEngineService;
namespace input_method {
+class CandidateWindow;
struct KeyEventHandle;
} // namespace input_method
@@ -164,8 +164,8 @@ class InputMethodEngineIBus : public InputMethodEngine,
// The current engine component.
scoped_ptr<IBusComponent> component_;
- // The current lookup table.
- scoped_ptr<IBusLookupTable> table_;
+ // The current candidate window.
+ scoped_ptr<input_method::CandidateWindow> candidate_window_;
// The current candidate window property.
CandidateWindowProperty candidate_window_property_;

Powered by Google App Engine
This is Rietveld 408576698