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

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

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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 07602b53a067c183afb9a1cf5cb13d5f2fde5fce..c9dd092830ea6b0955c1823d75dd2bb18d9a6144 100644
--- a/chrome/browser/ui/views/collected_cookies_views.h
+++ b/chrome/browser/ui/views/collected_cookies_views.h
@@ -45,27 +45,27 @@ 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 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;
+ ui::DialogButton button) const override;
+ virtual bool Cancel() override;
+ virtual ui::ModalType GetModalType() const override;
// views::ButtonListener:
virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) OVERRIDE;
+ const ui::Event& event) override;
// views::TabbedPaneListener:
- virtual void TabSelectedAt(int index) OVERRIDE;
+ virtual void TabSelectedAt(int index) override;
// views::TreeViewController:
- virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE;
+ virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) override;
// views::View:
- virtual gfx::Size GetMinimumSize() const OVERRIDE;
+ virtual gfx::Size GetMinimumSize() const override;
virtual void ViewHierarchyChanged(
- const ViewHierarchyChangedDetails& details) OVERRIDE;
+ const ViewHierarchyChangedDetails& details) override;
private:
virtual ~CollectedCookiesViews();
@@ -88,7 +88,7 @@ class CollectedCookiesViews : public views::DialogDelegateView,
// content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ 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