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

Unified Diff: chrome/browser/ui/views/collected_cookies_views.h

Issue 680133002: Standardize usage of virtual/override/final specifiers. (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
« no previous file with comments | « chrome/browser/ui/views/chrome_views_delegate.h ('k') | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/collected_cookies_views.h
diff --git a/chrome/browser/ui/views/collected_cookies_views.h b/chrome/browser/ui/views/collected_cookies_views.h
index c9dd092830ea6b0955c1823d75dd2bb18d9a6144..46de038dd999d7958b8903ad8db66733c46d7c34 100644
--- a/chrome/browser/ui/views/collected_cookies_views.h
+++ b/chrome/browser/ui/views/collected_cookies_views.h
@@ -45,30 +45,28 @@ class CollectedCookiesViews : public views::DialogDelegateView,
explicit CollectedCookiesViews(content::WebContents* web_contents);
// views::DialogDelegate:
- virtual base::string16 GetWindowTitle() const override;
- virtual int GetDialogButtons() const override;
- virtual base::string16 GetDialogButtonLabel(
- ui::DialogButton button) const override;
- virtual bool Cancel() override;
- virtual ui::ModalType GetModalType() const override;
+ base::string16 GetWindowTitle() const override;
+ int GetDialogButtons() const override;
+ base::string16 GetDialogButtonLabel(ui::DialogButton button) const override;
+ bool Cancel() override;
+ ui::ModalType GetModalType() const override;
// views::ButtonListener:
- virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) override;
+ void ButtonPressed(views::Button* sender, const ui::Event& event) override;
// views::TabbedPaneListener:
- virtual void TabSelectedAt(int index) override;
+ void TabSelectedAt(int index) override;
// views::TreeViewController:
- virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) override;
+ void OnTreeViewSelectionChanged(views::TreeView* tree_view) override;
// views::View:
- virtual gfx::Size GetMinimumSize() const override;
- virtual void ViewHierarchyChanged(
+ gfx::Size GetMinimumSize() const override;
+ void ViewHierarchyChanged(
const ViewHierarchyChangedDetails& details) override;
private:
- virtual ~CollectedCookiesViews();
+ ~CollectedCookiesViews() override;
void Init();
@@ -86,9 +84,9 @@ class CollectedCookiesViews : public views::DialogDelegateView,
void AddContentException(views::TreeView* tree_view, ContentSetting setting);
// content::NotificationObserver:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
content::NotificationRegistrar registrar_;
« no previous file with comments | « chrome/browser/ui/views/chrome_views_delegate.h ('k') | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698