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

Unified Diff: chrome/browser/ui/panels/panel.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/panels/panel.h ('k') | chrome/browser/ui/panels/panel_bounds_animation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/panels/panel.cc
diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc
index 70d9f4677bf3c549814ac7a50395ee0bee6c7d64..c1bd50cdd82b226962dd1743f314fc3da780548d 100644
--- a/chrome/browser/ui/panels/panel.cc
+++ b/chrome/browser/ui/panels/panel.cc
@@ -54,17 +54,17 @@ class PanelExtensionWindowController : public extensions::WindowController {
virtual ~PanelExtensionWindowController();
// Overridden from extensions::WindowController.
- virtual int GetWindowId() const OVERRIDE;
- virtual std::string GetWindowTypeText() const OVERRIDE;
+ virtual int GetWindowId() const override;
+ virtual std::string GetWindowTypeText() const override;
virtual base::DictionaryValue* CreateWindowValueWithTabs(
- const extensions::Extension* extension) const OVERRIDE;
+ const extensions::Extension* extension) const override;
virtual base::DictionaryValue* CreateTabValue(
- const extensions::Extension* extension, int tab_index) const OVERRIDE;
- virtual bool CanClose(Reason* reason) const OVERRIDE;
+ const extensions::Extension* extension, int tab_index) const override;
+ virtual bool CanClose(Reason* reason) const override;
virtual void SetFullscreenMode(bool is_fullscreen,
- const GURL& extension_url) const OVERRIDE;
+ const GURL& extension_url) const override;
virtual bool IsVisibleToExtension(
- const extensions::Extension* extension) const OVERRIDE;
+ const extensions::Extension* extension) const override;
private:
Panel* panel_; // Weak pointer. Owns us.
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/panels/panel_bounds_animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698