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

Unified Diff: chrome/browser/extensions/api/tabs/ash_panel_contents.cc

Issue 624153002: replace OVERRIDE and FINAL with override and 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/api/tabs/ash_panel_contents.cc
diff --git a/chrome/browser/extensions/api/tabs/ash_panel_contents.cc b/chrome/browser/extensions/api/tabs/ash_panel_contents.cc
index 346b688f479e691dfd4ca534346733ac22729d7d..408ec247f5107f85569efc55c051c20b35c06132 100644
--- a/chrome/browser/extensions/api/tabs/ash_panel_contents.cc
+++ b/chrome/browser/extensions/api/tabs/ash_panel_contents.cc
@@ -38,17 +38,17 @@ class AshPanelWindowController : public extensions::WindowController {
void NativeWindowChanged();
// 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:
AppWindow* app_window_; // Weak pointer; this is owned by app_window_
« no previous file with comments | « chrome/browser/extensions/api/tabs/ash_panel_contents.h ('k') | chrome/browser/extensions/api/tabs/tabs_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698