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

Unified Diff: ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h

Issue 853073002: Update {virtual,override,final} to follow C++11 style in ui. (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
« no previous file with comments | « ui/base/ime/chromeos/ime_keyboard_x11.h ('k') | ui/base/ime/chromeos/mock_ime_candidate_window_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h
diff --git a/ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h b/ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h
index 986c86240b89404974f5bfbefa6f53b8eabc558f..e2cead185efe9bfd9548fb9b9424263a94b8cae3 100644
--- a/ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h
+++ b/ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h
@@ -15,16 +15,16 @@ class UI_BASE_EXPORT MockComponentExtIMEManagerDelegate
: public ComponentExtensionIMEManagerDelegate {
public:
MockComponentExtIMEManagerDelegate();
- virtual ~MockComponentExtIMEManagerDelegate();
-
- virtual std::vector<ComponentExtensionIME> ListIME() override;
- virtual void Load(Profile*,
- const std::string& extension_id,
- const std::string& manifest,
- const base::FilePath& path) override;
- virtual void Unload(Profile*,
- const std::string& extension_id,
- const base::FilePath& path) override;
+ ~MockComponentExtIMEManagerDelegate() override;
+
+ std::vector<ComponentExtensionIME> ListIME() override;
+ void Load(Profile*,
+ const std::string& extension_id,
+ const std::string& manifest,
+ const base::FilePath& path) override;
+ void Unload(Profile*,
+ const std::string& extension_id,
+ const base::FilePath& path) override;
int load_call_count() const { return load_call_count_; }
int unload_call_count() const { return unload_call_count_; }
« no previous file with comments | « ui/base/ime/chromeos/ime_keyboard_x11.h ('k') | ui/base/ime/chromeos/mock_ime_candidate_window_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698