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

Unified Diff: chrome/browser/sync/glue/local_device_info_provider_impl.h

Issue 666733003: Standardize usage of virtual/override/final in chrome/browser/sync/ (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/sync/glue/local_device_info_provider_impl.h
diff --git a/chrome/browser/sync/glue/local_device_info_provider_impl.h b/chrome/browser/sync/glue/local_device_info_provider_impl.h
index a4bdc9cb011c12c127e4fbffe3508b2629ada006..4c8145fffd70c5a83e6bd6a55336f93829d81b90 100644
--- a/chrome/browser/sync/glue/local_device_info_provider_impl.h
+++ b/chrome/browser/sync/glue/local_device_info_provider_impl.h
@@ -19,16 +19,15 @@ class LocalDeviceInfoProviderImpl
: public sync_driver::LocalDeviceInfoProvider {
public:
LocalDeviceInfoProviderImpl();
- virtual ~LocalDeviceInfoProviderImpl();
+ ~LocalDeviceInfoProviderImpl() override;
// LocalDeviceInfoProvider implementation.
- virtual const sync_driver::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;
- virtual scoped_ptr<Subscription> RegisterOnInitializedCallback(
- const base::Closure& callback) override;
+ const sync_driver::DeviceInfo* GetLocalDeviceInfo() const override;
+ std::string GetLocalSyncCacheGUID() const override;
+ void Initialize(const std::string& cache_guid,
+ const std::string& signin_scoped_device_id) override;
+ scoped_ptr<Subscription> RegisterOnInitializedCallback(
+ const base::Closure& callback) override;
// Helper to construct a user agent string (ASCII) suitable for use by
// the syncapi for any HTTP communication. This string is used by the sync
« no previous file with comments | « chrome/browser/sync/glue/invalidation_adapter.h ('k') | chrome/browser/sync/glue/non_frontend_data_type_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698