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

Unified Diff: chrome/browser/extensions/dev_mode_bubble_controller.h

Issue 666153002: Standardize usage of virtual/override/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/dev_mode_bubble_controller.h
diff --git a/chrome/browser/extensions/dev_mode_bubble_controller.h b/chrome/browser/extensions/dev_mode_bubble_controller.h
index 4aaf1fef6f36962806e26acf635e2e38fdc4cea6..c350330df4cfca2ae1052cdfbe095f12571595f9 100644
--- a/chrome/browser/extensions/dev_mode_bubble_controller.h
+++ b/chrome/browser/extensions/dev_mode_bubble_controller.h
@@ -23,14 +23,14 @@ class DevModeBubbleController : public ExtensionMessageBubbleController {
static bool IsDevModeExtension(const Extension* extension);
explicit DevModeBubbleController(Profile* profile);
- virtual ~DevModeBubbleController();
+ ~DevModeBubbleController() override;
// Whether the controller knows of extensions to list in the bubble. Returns
// true if so.
bool ShouldShow();
// ExtensionMessageBubbleController methods.
- virtual void Show(ExtensionMessageBubble* bubble) override;
+ void Show(ExtensionMessageBubble* bubble) override;
private:
// A weak pointer to the profile we are associated with. Not owned by us.
« no previous file with comments | « chrome/browser/extensions/default_apps_unittest.cc ('k') | chrome/browser/extensions/dev_mode_bubble_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698