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

Unified Diff: chrome/browser/ui/webui/ntp/new_tab_ui.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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/ui/webui/ntp/new_tab_ui.h
diff --git a/chrome/browser/ui/webui/ntp/new_tab_ui.h b/chrome/browser/ui/webui/ntp/new_tab_ui.h
index cbc3f8db1006664c9926e4d4824babc9918da848..8baa86a7d188ee06e31bb27412173bff4335e919 100644
--- a/chrome/browser/ui/webui/ntp/new_tab_ui.h
+++ b/chrome/browser/ui/webui/ntp/new_tab_ui.h
@@ -64,12 +64,12 @@ class NewTabUI : public content::WebUIController,
// WebUIController implementation:
virtual void RenderViewCreated(
- content::RenderViewHost* render_view_host) OVERRIDE;
+ content::RenderViewHost* render_view_host) override;
virtual void RenderViewReused(
- content::RenderViewHost* render_view_host) OVERRIDE;
+ content::RenderViewHost* render_view_host) override;
// WebContentsObserver implementation:
- virtual void WasHidden() OVERRIDE;
+ virtual void WasHidden() override;
bool showing_sync_bubble() { return showing_sync_bubble_; }
void set_showing_sync_bubble(bool showing) { showing_sync_bubble_ = showing; }
@@ -80,15 +80,15 @@ class NewTabUI : public content::WebUIController,
virtual ~NewTabHTMLSource();
// content::URLDataSource implementation.
- virtual std::string GetSource() const OVERRIDE;
+ virtual std::string GetSource() const override;
virtual void StartDataRequest(
const std::string& path,
int render_process_id,
int render_frame_id,
- const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
- virtual std::string GetMimeType(const std::string&) const OVERRIDE;
- virtual bool ShouldReplaceExistingSource() const OVERRIDE;
- virtual bool ShouldAddContentSecurityPolicy() const OVERRIDE;
+ const content::URLDataSource::GotDataCallback& callback) override;
+ virtual std::string GetMimeType(const std::string&) const override;
+ virtual bool ShouldReplaceExistingSource() const override;
+ virtual bool ShouldAddContentSecurityPolicy() const override;
// Adds |resource| to the source. |resource_id| is resource id or 0,
// which means return empty data set. |mime_type| is mime type of the
@@ -113,7 +113,7 @@ class NewTabUI : public content::WebUIController,
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// If |web_contents| has an NTP URL, emits a number of NTP statistics (like
// mouseovers counts) associated with |web_contents|, to be logged in UMA
« no previous file with comments | « chrome/browser/ui/webui/ntp/new_tab_page_sync_handler.h ('k') | chrome/browser/ui/webui/ntp/new_tab_ui_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698