| 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
|
|
|