diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 04:13:07 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 11:13:20 +0000 |
commit | 0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c (patch) | |
tree | 34810f47ea5b7f10fd9dfb98e8f5700f462c2a0a /chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc | |
parent | 9a74ddccb2e98ec53906278be3705274b95e500c (diff) | |
download | chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.zip chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.tar.gz chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.tar.bz2 |
Standardize usage of virtual/override/final in chrome/browser/sync/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=zea@chromium.org
Review URL: https://codereview.chromium.org/666733003
Cr-Commit-Position: refs/heads/master@{#300454}
Diffstat (limited to 'chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc')
-rw-r--r-- | chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc index 5f42931..d517cf1 100644 --- a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc +++ b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc @@ -115,11 +115,10 @@ class FakeSyncManagerFactory : public syncer::SyncManagerFactory { fake_manager_(fake_manager) { *fake_manager_ = NULL; } - virtual ~FakeSyncManagerFactory() {} + ~FakeSyncManagerFactory() override {} // SyncManagerFactory implementation. Called on the sync thread. - virtual scoped_ptr<SyncManager> CreateSyncManager( - std::string name) override { + scoped_ptr<SyncManager> CreateSyncManager(std::string name) override { *fake_manager_ = new FakeSyncManager(initial_sync_ended_types_, progress_marker_types_, configure_fail_types_); |