diff options
author | komatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-26 03:18:38 +0000 |
---|---|---|
committer | komatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-26 03:18:38 +0000 |
commit | ae20ac8c99f45c40aa2a4d32cb07e0295802993b (patch) | |
tree | 772dec86fb62dc00571cb39205c77074620958a7 /chrome/browser/chromeos/input_method/input_method_manager_impl.h | |
parent | eb87d989280b0d735e0f7198d3aa08fe6918b7fe (diff) | |
download | chromium_src-ae20ac8c99f45c40aa2a4d32cb07e0295802993b.zip chromium_src-ae20ac8c99f45c40aa2a4d32cb07e0295802993b.tar.gz chromium_src-ae20ac8c99f45c40aa2a4d32cb07e0295802993b.tar.bz2 |
Use pointer instead of reference for a function argument.
BUG=N/A
Review URL: https://codereview.chromium.org/85753002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237234 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_manager_impl.h')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_manager_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_manager_impl.h b/chrome/browser/chromeos/input_method/input_method_manager_impl.h index a13fa6d..7e779ab 100644 --- a/chrome/browser/chromeos/input_method/input_method_manager_impl.h +++ b/chrome/browser/chromeos/input_method/input_method_manager_impl.h @@ -156,7 +156,7 @@ class InputMethodManagerImpl : public InputMethodManager, // Adds new input method to given list if possible bool EnableInputMethodImpl( const std::string& input_method_id, - std::vector<std::string>& new_active_input_method_ids) const; + std::vector<std::string>* new_active_input_method_ids) const; // Starts or stops the system input method framework as needed. // (after list of enabled input methods has been updated) |