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

Unified Diff: chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h

Issue 796693005: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/input_method. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
Index: chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
diff --git a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
index 88edec241f37cb7def67f37ddfc3f97ac0fb4aab..9c9c9faafd28285328aaaf67a182f2f45ca183a7 100644
--- a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
+++ b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
@@ -24,17 +24,17 @@ class ComponentExtensionIMEManagerImpl
: public ComponentExtensionIMEManagerDelegate {
public:
ComponentExtensionIMEManagerImpl();
- virtual ~ComponentExtensionIMEManagerImpl();
+ ~ComponentExtensionIMEManagerImpl() override;
// ComponentExtensionIMEManagerDelegate overrides:
- virtual std::vector<ComponentExtensionIME> ListIME() override;
- virtual void Load(Profile* profile,
- const std::string& extension_id,
- const std::string& manifest,
- const base::FilePath& file_path) override;
- virtual void Unload(Profile* profile,
- const std::string& extension_id,
- const base::FilePath& file_path) override;
+ std::vector<ComponentExtensionIME> ListIME() override;
+ void Load(Profile* profile,
+ const std::string& extension_id,
+ const std::string& manifest,
+ const base::FilePath& file_path) override;
+ void Unload(Profile* profile,
+ const std::string& extension_id,
+ const base::FilePath& file_path) override;
private:
// Reads component extensions and extract their localized information: name,

Powered by Google App Engine
This is Rietveld 408576698