Chromium Code Reviews

Unified Diff: components/sync_driver/local_device_info_provider_mock.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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.
Jump to:
View side-by-side diff with in-line comments
Index: components/sync_driver/local_device_info_provider_mock.h
diff --git a/components/sync_driver/local_device_info_provider_mock.h b/components/sync_driver/local_device_info_provider_mock.h
index 5218c6be2e2015db313246eb9ef244f3ed4cb96f..f8d06050ef9583cb05a2cfecfe100e34655bb04f 100644
--- a/components/sync_driver/local_device_info_provider_mock.h
+++ b/components/sync_driver/local_device_info_provider_mock.h
@@ -25,13 +25,13 @@ class LocalDeviceInfoProviderMock
const std::string& signin_scoped_device_id);
virtual ~LocalDeviceInfoProviderMock();
- virtual const DeviceInfo* GetLocalDeviceInfo() const OVERRIDE;
- virtual std::string GetLocalSyncCacheGUID() const OVERRIDE;
+ virtual const DeviceInfo* GetLocalDeviceInfo() const override;
+ virtual std::string GetLocalSyncCacheGUID() const override;
virtual void Initialize(
const std::string& cache_guid,
- const std::string& signin_scoped_device_id) OVERRIDE;
+ const std::string& signin_scoped_device_id) override;
virtual scoped_ptr<Subscription> RegisterOnInitializedCallback(
- const base::Closure& callback) OVERRIDE;
+ const base::Closure& callback) override;
void SetInitialized(bool is_initialized);

Powered by Google App Engine