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

Unified Diff: chromecast/metrics/cast_metrics_service_client.h

Issue 630663003: replace OVERRIDE and FINAL with override and final in chromecast/ (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: chromecast/metrics/cast_metrics_service_client.h
diff --git a/chromecast/metrics/cast_metrics_service_client.h b/chromecast/metrics/cast_metrics_service_client.h
index a2ebab14d39f2a1f7f7aeac96211c55a1bef3fcc..9f5997a8850bd2a21eea906bc79a0a76b8f72a45 100644
--- a/chromecast/metrics/cast_metrics_service_client.h
+++ b/chromecast/metrics/cast_metrics_service_client.h
@@ -41,21 +41,21 @@ class CastMetricsServiceClient : public ::metrics::MetricsServiceClient {
net::URLRequestContextGetter* request_context);
// metrics::MetricsServiceClient implementation:
- virtual void SetMetricsClientId(const std::string& client_id) OVERRIDE;
- virtual bool IsOffTheRecordSessionActive() OVERRIDE;
- virtual int32_t GetProduct() OVERRIDE;
- virtual std::string GetApplicationLocale() OVERRIDE;
- virtual bool GetBrand(std::string* brand_code) OVERRIDE;
- virtual ::metrics::SystemProfileProto::Channel GetChannel() OVERRIDE;
- virtual std::string GetVersionString() OVERRIDE;
- virtual void OnLogUploadComplete() OVERRIDE;
+ virtual void SetMetricsClientId(const std::string& client_id) override;
+ virtual bool IsOffTheRecordSessionActive() override;
+ virtual int32_t GetProduct() override;
+ virtual std::string GetApplicationLocale() override;
+ virtual bool GetBrand(std::string* brand_code) override;
+ virtual ::metrics::SystemProfileProto::Channel GetChannel() override;
+ virtual std::string GetVersionString() override;
+ virtual void OnLogUploadComplete() override;
virtual void StartGatheringMetrics(
- const base::Closure& done_callback) OVERRIDE;
- virtual void CollectFinalMetrics(const base::Closure& done_callback) OVERRIDE;
+ const base::Closure& done_callback) override;
+ virtual void CollectFinalMetrics(const base::Closure& done_callback) override;
virtual scoped_ptr< ::metrics::MetricsLogUploader> CreateUploader(
const std::string& server_url,
const std::string& mime_type,
- const base::Callback<void(int)>& on_upload_complete) OVERRIDE;
+ const base::Callback<void(int)>& on_upload_complete) override;
// Starts/stops the metrics service.
void EnableMetricsService(bool enabled);
« no previous file with comments | « chromecast/media/cma/test/run_all_unittests.cc ('k') | chromecast/metrics/cast_metrics_service_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698