summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/input_method/input_method_persistence.h
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2015-01-15 16:44:31 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-16 00:46:05 +0000
commit88b646e4232226053540eac1600967780a5a357b (patch)
treed2b7b74d1ac533f651909706f05dc16c8a73c8f8 /chrome/browser/chromeos/input_method/input_method_persistence.h
parent15b47e8b90c9316f3c6c8ac9e12243b651762875 (diff)
downloadchromium_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_persistence.h')
-rw-r--r--chrome/browser/chromeos/input_method/input_method_persistence.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_persistence.h b/chrome/browser/chromeos/input_method/input_method_persistence.h
index 1de944b..fc7c802 100644
--- a/chrome/browser/chromeos/input_method/input_method_persistence.h
+++ b/chrome/browser/chromeos/input_method/input_method_persistence.h
@@ -26,14 +26,14 @@ class InputMethodPersistence : public InputMethodManager::Observer {
// OnSessionStateChange whenever the InputMethodManager::UISessionState
// changes.
explicit InputMethodPersistence(InputMethodManager* input_method_manager);
- virtual ~InputMethodPersistence();
+ ~InputMethodPersistence() override;
// Receives notification of session state changes.
void OnSessionStateChange(InputMethodManager::UISessionState new_session);
// InputMethodManager::Observer overrides.
- virtual void InputMethodChanged(InputMethodManager* manager,
- bool show_message) override;
+ void InputMethodChanged(InputMethodManager* manager,
+ bool show_message) override;
private:
InputMethodManager* input_method_manager_;