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

Unified Diff: chrome/browser/extensions/proxy_overridden_bubble_controller.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/extensions/proxy_overridden_bubble_controller.cc
diff --git a/chrome/browser/extensions/proxy_overridden_bubble_controller.cc b/chrome/browser/extensions/proxy_overridden_bubble_controller.cc
index f7199d226f30272a62cd8beef331c4ab1868cd1f..a634f238355446868efe7804a2cb2d5b74561567 100644
--- a/chrome/browser/extensions/proxy_overridden_bubble_controller.cc
+++ b/chrome/browser/extensions/proxy_overridden_bubble_controller.cc
@@ -34,29 +34,29 @@ class ProxyOverriddenBubbleDelegate
virtual ~ProxyOverriddenBubbleDelegate();
// ExtensionMessageBubbleController::Delegate methods.
- virtual bool ShouldIncludeExtension(const std::string& extension_id) OVERRIDE;
+ virtual bool ShouldIncludeExtension(const std::string& extension_id) override;
virtual void AcknowledgeExtension(
const std::string& extension_id,
ExtensionMessageBubbleController::BubbleAction
- user_action) OVERRIDE;
- virtual void PerformAction(const ExtensionIdList& list) OVERRIDE;
- virtual void OnClose() OVERRIDE;
- virtual base::string16 GetTitle() const OVERRIDE;
+ user_action) override;
+ virtual void PerformAction(const ExtensionIdList& list) override;
+ virtual void OnClose() override;
+ virtual base::string16 GetTitle() const override;
virtual base::string16 GetMessageBody(
- bool anchored_to_browser_action) const OVERRIDE;
+ bool anchored_to_browser_action) const override;
virtual base::string16 GetOverflowText(
- const base::string16& overflow_count) const OVERRIDE;
- virtual base::string16 GetLearnMoreLabel() const OVERRIDE;
- virtual GURL GetLearnMoreUrl() const OVERRIDE;
- virtual base::string16 GetActionButtonLabel() const OVERRIDE;
- virtual base::string16 GetDismissButtonLabel() const OVERRIDE;
- virtual bool ShouldShowExtensionList() const OVERRIDE;
+ const base::string16& overflow_count) const override;
+ virtual base::string16 GetLearnMoreLabel() const override;
+ virtual GURL GetLearnMoreUrl() const override;
+ virtual base::string16 GetActionButtonLabel() const override;
+ virtual base::string16 GetDismissButtonLabel() const override;
+ virtual bool ShouldShowExtensionList() const override;
virtual void RestrictToSingleExtension(
- const std::string& extension_id) OVERRIDE;
- virtual void LogExtensionCount(size_t count) OVERRIDE;
+ const std::string& extension_id) override;
+ virtual void LogExtensionCount(size_t count) override;
virtual void LogAction(
ExtensionMessageBubbleController::BubbleAction
- action) OVERRIDE;
+ action) override;
private:
// Our extension service. Weak, not owned by us.
« no previous file with comments | « chrome/browser/extensions/proxy_overridden_bubble_controller.h ('k') | chrome/browser/extensions/sandboxed_unpacker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698