diff options
author | dcheng <dcheng@chromium.org> | 2015-01-15 16:44:31 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-16 00:46:05 +0000 |
commit | 88b646e4232226053540eac1600967780a5a357b (patch) | |
tree | d2b7b74d1ac533f651909706f05dc16c8a73c8f8 /chrome/browser/chromeos/input_method/input_method_syncer.h | |
parent | 15b47e8b90c9316f3c6c8ac9e12243b651762875 (diff) | |
download | chromium_src-88b646e4232226053540eac1600967780a5a357b.zip chromium_src-88b646e4232226053540eac1600967780a5a357b.tar.gz chromium_src-88b646e4232226053540eac1600967780a5a357b.tar.bz2 |
Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/input_method.
The Google style guide states that only one of {virtual,override,final}
should be used for each declaration, since override implies virtual and
final implies both virtual and override.
This patch was automatically generated with a ChromeOS build using a
variation of https://codereview.chromium.org/598073004.
BUG=417463
R=zork@chromium.org
Review URL: https://codereview.chromium.org/796693005
Cr-Commit-Position: refs/heads/master@{#311788}
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_syncer.h')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_syncer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_syncer.h b/chrome/browser/chromeos/input_method/input_method_syncer.h index 56fcf47..20d04fe 100644 --- a/chrome/browser/chromeos/input_method/input_method_syncer.h +++ b/chrome/browser/chromeos/input_method/input_method_syncer.h @@ -33,7 +33,7 @@ class InputMethodSyncer : public PrefServiceSyncableObserver { InputMethodSyncer( PrefServiceSyncable* prefs, scoped_refptr<input_method::InputMethodManager::State> ime_state); - virtual ~InputMethodSyncer(); + ~InputMethodSyncer() override; // Registers the syncable input method prefs. static void RegisterProfilePrefs( |