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

Unified Diff: chrome/browser/ui/cocoa/website_settings/permission_bubble_cocoa.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/ui/cocoa/website_settings/permission_bubble_cocoa.h
diff --git a/chrome/browser/ui/cocoa/website_settings/permission_bubble_cocoa.h b/chrome/browser/ui/cocoa/website_settings/permission_bubble_cocoa.h
index 5cb4afd7d7c1c23c07e1355d6f600b13c3f35167..2eb4f2c777bc1a147753f6a023157d0f9cfb7cc6 100644
--- a/chrome/browser/ui/cocoa/website_settings/permission_bubble_cocoa.h
+++ b/chrome/browser/ui/cocoa/website_settings/permission_bubble_cocoa.h
@@ -20,16 +20,16 @@ class PermissionBubbleController;
class PermissionBubbleCocoa : public PermissionBubbleView {
public:
explicit PermissionBubbleCocoa(NSWindow* parent_window);
- virtual ~PermissionBubbleCocoa();
+ ~PermissionBubbleCocoa() override;
// PermissionBubbleView interface.
- virtual void Show(const std::vector<PermissionBubbleRequest*>& requests,
- const std::vector<bool>& accept_state,
- bool customization_mode) override;
- virtual void Hide() override;
- virtual bool IsVisible() override;
- virtual void SetDelegate(Delegate* delegate) override;
- virtual bool CanAcceptRequestUpdate() override;
+ void Show(const std::vector<PermissionBubbleRequest*>& requests,
+ const std::vector<bool>& accept_state,
+ bool customization_mode) override;
+ void Hide() override;
+ bool IsVisible() override;
+ void SetDelegate(Delegate* delegate) override;
+ bool CanAcceptRequestUpdate() override;
// Called when |bubbleController_| is closing.
void OnBubbleClosing();

Powered by Google App Engine
This is Rietveld 408576698