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

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

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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 8baa86a7d188ee06e31bb27412173bff4335e919..4fdee9fe8d9e76701fcb5a38d464dbb44d2f578f 100644
--- a/chrome/browser/ui/webui/ntp/new_tab_ui.h
+++ b/chrome/browser/ui/webui/ntp/new_tab_ui.h
@@ -35,7 +35,7 @@ class NewTabUI : public content::WebUIController,
public content::NotificationObserver {
public:
explicit NewTabUI(content::WebUI* web_ui);
- virtual ~NewTabUI();
+ ~NewTabUI() override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
@@ -63,13 +63,11 @@ class NewTabUI : public content::WebUIController,
static int current_pref_version() { return current_pref_version_; }
// WebUIController implementation:
- virtual void RenderViewCreated(
- content::RenderViewHost* render_view_host) override;
- virtual void RenderViewReused(
- content::RenderViewHost* render_view_host) override;
+ void RenderViewCreated(content::RenderViewHost* render_view_host) override;
+ void RenderViewReused(content::RenderViewHost* render_view_host) override;
// WebContentsObserver implementation:
- virtual void WasHidden() override;
+ void WasHidden() override;
bool showing_sync_bubble() { return showing_sync_bubble_; }
void set_showing_sync_bubble(bool showing) { showing_sync_bubble_ = showing; }
@@ -77,18 +75,18 @@ class NewTabUI : public content::WebUIController,
class NewTabHTMLSource : public content::URLDataSource {
public:
explicit NewTabHTMLSource(Profile* profile);
- virtual ~NewTabHTMLSource();
+ ~NewTabHTMLSource() override;
// content::URLDataSource implementation.
- virtual std::string GetSource() const override;
- virtual void StartDataRequest(
+ std::string GetSource() const override;
+ 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;
+ std::string GetMimeType(const std::string&) const override;
+ bool ShouldReplaceExistingSource() const override;
+ 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
@@ -111,9 +109,9 @@ class NewTabUI : public content::WebUIController,
FRIEND_TEST_ALL_PREFIXES(NewTabUITest, UpdateUserPrefsVersion);
// content::NotificationObserver implementation.
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ 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

Powered by Google App Engine
This is Rietveld 408576698