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

Unified Diff: chrome/browser/metrics/omnibox_metrics_provider.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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/metrics/omnibox_metrics_provider.h
diff --git a/chrome/browser/metrics/omnibox_metrics_provider.h b/chrome/browser/metrics/omnibox_metrics_provider.h
index a5c01b93308ea408ae8bc78db4cf3a8b0cfebccb..9e76f1b77c059bba1084d87658a0b9ed2d97af36 100644
--- a/chrome/browser/metrics/omnibox_metrics_provider.h
+++ b/chrome/browser/metrics/omnibox_metrics_provider.h
@@ -19,19 +19,19 @@ class OmniboxMetricsProvider : public metrics::MetricsProvider,
public content::NotificationObserver {
public:
OmniboxMetricsProvider();
- virtual ~OmniboxMetricsProvider();
+ ~OmniboxMetricsProvider() override;
// metrics::MetricsDataProvider:
- virtual void OnRecordingEnabled() override;
- virtual void OnRecordingDisabled() override;
- virtual void ProvideGeneralMetrics(
+ void OnRecordingEnabled() override;
+ void OnRecordingDisabled() override;
+ void ProvideGeneralMetrics(
metrics::ChromeUserMetricsExtension* uma_proto) override;
private:
// content::NotificationObserver:
- 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;
// Records the input text, available choices, and selected entry when the
// user uses the Omnibox to open a URL.
« no previous file with comments | « chrome/browser/metrics/metrics_service_browsertest.cc ('k') | chrome/browser/metrics/plugin_metrics_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698