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

Unified Diff: sync/internal_api/public/internal_components_factory_impl.h

Issue 642023004: Standardize usage of virtual/override/final in 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
« no previous file with comments | « sync/internal_api/public/http_bridge_network_resources.h ('k') | sync/internal_api/public/read_node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/public/internal_components_factory_impl.h
diff --git a/sync/internal_api/public/internal_components_factory_impl.h b/sync/internal_api/public/internal_components_factory_impl.h
index 3fe5278e01bc485520750340eb227b61b74dc57e..e29fa85f6c99ce4fb61a44943b7648758b13c0c3 100644
--- a/sync/internal_api/public/internal_components_factory_impl.h
+++ b/sync/internal_api/public/internal_components_factory_impl.h
@@ -17,14 +17,14 @@ class SYNC_EXPORT InternalComponentsFactoryImpl
: public InternalComponentsFactory {
public:
InternalComponentsFactoryImpl(const Switches& switches);
- virtual ~InternalComponentsFactoryImpl();
+ ~InternalComponentsFactoryImpl() override;
- virtual scoped_ptr<SyncScheduler> BuildScheduler(
+ scoped_ptr<SyncScheduler> BuildScheduler(
const std::string& name,
sessions::SyncSessionContext* context,
syncer::CancelationSignal* cancelation_signal) override;
- virtual scoped_ptr<sessions::SyncSessionContext> BuildContext(
+ scoped_ptr<sessions::SyncSessionContext> BuildContext(
ServerConnectionManager* connection_manager,
syncable::Directory* directory,
ExtensionsActivity* extensions_activity,
@@ -33,12 +33,12 @@ class SYNC_EXPORT InternalComponentsFactoryImpl
ModelTypeRegistry* model_type_registry,
const std::string& invalidator_client_id) override;
- virtual scoped_ptr<syncable::DirectoryBackingStore>
- BuildDirectoryBackingStore(StorageOption storage,
- const std::string& dir_name,
- const base::FilePath& backing_filepath) override;
+ scoped_ptr<syncable::DirectoryBackingStore> BuildDirectoryBackingStore(
+ StorageOption storage,
+ const std::string& dir_name,
+ const base::FilePath& backing_filepath) override;
- virtual Switches GetSwitches() const override;
+ Switches GetSwitches() const override;
private:
const Switches switches_;
« no previous file with comments | « sync/internal_api/public/http_bridge_network_resources.h ('k') | sync/internal_api/public/read_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698