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

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: 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
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 7803d0c77e338225b40bd01d820497f72ca417a8..94b5b88c3123c6ac7234cd863d5e04f58662d5ab 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine_ibus.cc
+++ b/chrome/browser/chromeos/input_method/input_method_engine_ibus.cc
@@ -221,9 +221,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_);
}

Powered by Google App Engine
This is Rietveld 408576698