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

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

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/google_update_metrics_provider_win.h
diff --git a/chrome/browser/metrics/google_update_metrics_provider_win.h b/chrome/browser/metrics/google_update_metrics_provider_win.h
index a898851de72ed70fc059e30fe485ebc69447aaf3..171ee7945a70741bb2e22fa6dec9952f08a87615 100644
--- a/chrome/browser/metrics/google_update_metrics_provider_win.h
+++ b/chrome/browser/metrics/google_update_metrics_provider_win.h
@@ -16,14 +16,14 @@
class GoogleUpdateMetricsProviderWin : public metrics::MetricsProvider {
public:
GoogleUpdateMetricsProviderWin();
- virtual ~GoogleUpdateMetricsProviderWin();
+ ~GoogleUpdateMetricsProviderWin() override;
// Fetches Google Update data asynchronously and calls |done_callback| when
// done.
void GetGoogleUpdateData(const base::Closure& done_callback);
// metrics::MetricsProvider
- virtual void ProvideSystemProfileMetrics(
+ void ProvideSystemProfileMetrics(
metrics::SystemProfileProto* system_profile_proto) override;
private:

Powered by Google App Engine
This is Rietveld 408576698