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

Unified Diff: chrome/browser/extensions/settings_api_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/settings_api_bubble_controller.h
diff --git a/chrome/browser/extensions/settings_api_bubble_controller.h b/chrome/browser/extensions/settings_api_bubble_controller.h
index 0c9c4944d3b0451fa354f7e7efb4351095430a10..df64077981f85a6556fec15883339f0df75f8c34 100644
--- a/chrome/browser/extensions/settings_api_bubble_controller.h
+++ b/chrome/browser/extensions/settings_api_bubble_controller.h
@@ -16,14 +16,14 @@ class SettingsApiBubble;
class SettingsApiBubbleController : public ExtensionMessageBubbleController {
public:
SettingsApiBubbleController(Profile* profile, SettingsApiOverrideType type);
- virtual ~SettingsApiBubbleController();
+ ~SettingsApiBubbleController() override;
// Whether the controller knows that we should show the bubble for extension
// with |extension_id|. Returns true if so.
bool ShouldShow(const std::string& extension_id);
// ExtensionMessageBubbleController:
- virtual bool CloseOnDeactivate() override;
+ bool CloseOnDeactivate() override;
private:
// A weak pointer to the profile we are associated with. Not owned by us.
« no previous file with comments | « chrome/browser/extensions/sandboxed_unpacker_unittest.cc ('k') | chrome/browser/extensions/settings_api_bubble_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698