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

Unified Diff: chrome/browser/tab_contents/background_contents.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/tab_contents/background_contents.h
diff --git a/chrome/browser/tab_contents/background_contents.h b/chrome/browser/tab_contents/background_contents.h
index ef644c901f51dfbd587343a287af65c3044f219c..7d224ab682f1d1b9f0c8aefe3b96ebe9d883b30e 100644
--- a/chrome/browser/tab_contents/background_contents.h
+++ b/chrome/browser/tab_contents/background_contents.h
@@ -55,25 +55,25 @@ class BackgroundContents : public content::WebContentsDelegate,
virtual const GURL& GetURL() const;
// content::WebContentsDelegate implementation:
- virtual void CloseContents(content::WebContents* source) OVERRIDE;
- virtual bool ShouldSuppressDialogs() OVERRIDE;
+ virtual void CloseContents(content::WebContents* source) override;
+ virtual bool ShouldSuppressDialogs() override;
virtual void DidNavigateMainFramePostCommit(
- content::WebContents* tab) OVERRIDE;
+ content::WebContents* tab) override;
virtual void AddNewContents(content::WebContents* source,
content::WebContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture,
- bool* was_blocked) OVERRIDE;
- virtual bool IsNeverVisible(content::WebContents* web_contents) OVERRIDE;
+ bool* was_blocked) override;
+ virtual bool IsNeverVisible(content::WebContents* web_contents) override;
// content::WebContentsObserver implementation:
- virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE;
+ virtual void RenderProcessGone(base::TerminationStatus status) override;
// content::NotificationObserver
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
protected:
// Exposed for testing.

Powered by Google App Engine
This is Rietveld 408576698