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

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

Issue 11783085: Extends IBusLookupTable to handle IsEqual/CopyFrom. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comment Created 7 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
« no previous file with comments | « chrome/browser/chromeos/input_method/ibus_ui_controller.cc ('k') | chromeos/dbus/ibus/ibus_lookup_table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/input_method/input_method_engine_ibus.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_engine_ibus.cc b/chrome/browser/chromeos/input_method/input_method_engine_ibus.cc
index f02facdd0119528117a1487faf28cf0ef60547b1..738a87869c09ce459a729d30c2cf6fac34d8a198 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine_ibus.cc
+++ b/chrome/browser/chromeos/input_method/input_method_engine_ibus.cc
@@ -222,9 +222,8 @@ void InputMethodEngineIBus::SetCandidateWindowCursorVisible(bool visible) {
}
void InputMethodEngineIBus::SetCandidateWindowVertical(bool vertical) {
- table_->set_orientation(
- vertical ? ibus::IBusLookupTable::IBUS_LOOKUP_TABLE_ORIENTATION_VERTICAL :
- ibus::IBusLookupTable::IBUS_LOOKUP_TABLE_ORIENTATION_HORIZONTAL);
+ table_->set_orientation(vertical ? ibus::IBusLookupTable::VERTICAL :
+ ibus::IBusLookupTable::HORIZONTAL);
if (active_)
GetCurrentService()->UpdateLookupTable(*table_.get(), window_visible_);
}
« no previous file with comments | « chrome/browser/chromeos/input_method/ibus_ui_controller.cc ('k') | chromeos/dbus/ibus/ibus_lookup_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698