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