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

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

Issue 150723006: Make input_methods.txt to be able to specify indicator string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more consistent Created 6 years, 10 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 | « no previous file | chrome/browser/chromeos/input_method/input_method_manager_impl_unittest.cc » ('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.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_engine.cc b/chrome/browser/chromeos/input_method/input_method_engine.cc
index a1d8d3d4e0abf31992aa26c504c385ccf57c3d1b..200e6816835f9b724cd01ebd4e7e64aa717214ba 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine.cc
+++ b/chrome/browser/chromeos/input_method/input_method_engine.cc
@@ -96,13 +96,15 @@ void InputMethodEngine::Initialize(
}
input_view_url_ = input_view;
- descriptor_ = input_method::InputMethodDescriptor(imm_id_,
- engine_name,
- layouts,
- languages,
- false, // is_login_keyboard
- options_page,
- input_view);
+ descriptor_ = input_method::InputMethodDescriptor(
+ imm_id_,
+ engine_name,
+ std::string(), // TODO(uekawa): Set short name.
+ layouts,
+ languages,
+ false, // is_login_keyboard
+ options_page,
+ input_view);
// TODO(komatsu): It is probably better to call AddInputMethodExtension
// out of Initialize.
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_manager_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698