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

Unified Diff: sync/test/null_directory_change_delegate.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/test/mock_invalidation.h ('k') | sync/test/sessions/mock_debug_info_getter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/null_directory_change_delegate.h
diff --git a/sync/test/null_directory_change_delegate.h b/sync/test/null_directory_change_delegate.h
index c55b27e1c905100d09f4ad61e762b8438d339d12..a37e6708ce76fb7604dc8c6b1674d6946b6074d5 100644
--- a/sync/test/null_directory_change_delegate.h
+++ b/sync/test/null_directory_change_delegate.h
@@ -14,20 +14,20 @@ namespace syncable {
// DirectoryChangeDelegate that does nothing in all delegate methods.
class NullDirectoryChangeDelegate : public DirectoryChangeDelegate {
public:
- virtual ~NullDirectoryChangeDelegate();
+ ~NullDirectoryChangeDelegate() override;
- virtual void HandleCalculateChangesChangeEventFromSyncApi(
+ void HandleCalculateChangesChangeEventFromSyncApi(
const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans,
std::vector<int64>* entries_changed) override;
- virtual void HandleCalculateChangesChangeEventFromSyncer(
+ void HandleCalculateChangesChangeEventFromSyncer(
const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans,
std::vector<int64>* entries_changed) override;
- virtual ModelTypeSet HandleTransactionEndingChangeEvent(
+ ModelTypeSet HandleTransactionEndingChangeEvent(
const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans) override;
- virtual void HandleTransactionCompleteChangeEvent(
+ void HandleTransactionCompleteChangeEvent(
ModelTypeSet models_with_changes) override;
};
« no previous file with comments | « sync/test/mock_invalidation.h ('k') | sync/test/sessions/mock_debug_info_getter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698