diff options
author | nona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-19 18:58:51 +0000 |
---|---|---|
committer | nona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-19 18:58:51 +0000 |
commit | 54c78704a62c49a3d68fd4c545a4a6d6f8fa0e39 (patch) | |
tree | 17c0c53964049ae848578e3e87571b59aca6cd9a /chrome/browser/chromeos/input_method/mock_input_method_manager.cc | |
parent | 7326c8bde79700a0e6cc41c5dd72470af6360e48 (diff) | |
download | chromium_src-54c78704a62c49a3d68fd4c545a4a6d6f8fa0e39.zip chromium_src-54c78704a62c49a3d68fd4c545a4a6d6f8fa0e39.tar.gz chromium_src-54c78704a62c49a3d68fd4c545a4a6d6f8fa0e39.tar.bz2 |
Remove |third_party| from InputMethodDescriptor.
All third party input method is provided as Extension IME, thus we don't need to use additional field, just check with |id|.
BUG=None
TEST=Confirmed still asterisk is shown for extension IME as the indicator of third party IME.
Review URL: https://chromiumcodereview.appspot.com/14070014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195252 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method/mock_input_method_manager.cc')
-rw-r--r-- | chrome/browser/chromeos/input_method/mock_input_method_manager.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/input_method/mock_input_method_manager.cc b/chrome/browser/chromeos/input_method/mock_input_method_manager.cc index d0a6347..1751fd4 100644 --- a/chrome/browser/chromeos/input_method/mock_input_method_manager.cc +++ b/chrome/browser/chromeos/input_method/mock_input_method_manager.cc @@ -118,8 +118,7 @@ InputMethodDescriptor MockInputMethodManager::GetCurrentInputMethod() const { descriptor.name(), descriptor.keyboard_layout(), descriptor.language_code(), - "", // options page url. - false); + ""); // options page url. } return descriptor; } |