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

Side by Side Diff: sync/api/sync_change_processor_wrapper_for_test.h

Issue 629733002: replace OVERRIDE and FINAL with override and 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 unified diff | Download patch
« no previous file with comments | « sync/api/fake_syncable_service.h ('k') | sync/api/syncable_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ 5 #ifndef SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_
6 #define SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ 6 #define SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_
7 7
8 #include "sync/api/sync_change_processor.h" 8 #include "sync/api/sync_change_processor.h"
9 9
10 namespace syncer { 10 namespace syncer {
11 11
12 // A wrapper class for use in tests. 12 // A wrapper class for use in tests.
13 class SyncChangeProcessorWrapperForTest : public SyncChangeProcessor { 13 class SyncChangeProcessorWrapperForTest : public SyncChangeProcessor {
14 public: 14 public:
15 // Create a SyncChangeProcessorWrapperForTest. 15 // Create a SyncChangeProcessorWrapperForTest.
16 // 16 //
17 // All method calls are forwarded to |wrapped|. Caller maintains ownership 17 // All method calls are forwarded to |wrapped|. Caller maintains ownership
18 // of |wrapped| and is responsible for ensuring it outlives this object. 18 // of |wrapped| and is responsible for ensuring it outlives this object.
19 explicit SyncChangeProcessorWrapperForTest( 19 explicit SyncChangeProcessorWrapperForTest(
20 syncer::SyncChangeProcessor* wrapped); 20 syncer::SyncChangeProcessor* wrapped);
21 virtual ~SyncChangeProcessorWrapperForTest(); 21 virtual ~SyncChangeProcessorWrapperForTest();
22 22
23 // SyncChangeProcessor implementation. 23 // SyncChangeProcessor implementation.
24 virtual syncer::SyncError ProcessSyncChanges( 24 virtual syncer::SyncError ProcessSyncChanges(
25 const tracked_objects::Location& from_here, 25 const tracked_objects::Location& from_here,
26 const syncer::SyncChangeList& change_list) OVERRIDE; 26 const syncer::SyncChangeList& change_list) override;
27 virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) 27 virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type)
28 const OVERRIDE; 28 const override;
29 29
30 private: 30 private:
31 syncer::SyncChangeProcessor* const wrapped_; 31 syncer::SyncChangeProcessor* const wrapped_;
32 32
33 DISALLOW_COPY_AND_ASSIGN(SyncChangeProcessorWrapperForTest); 33 DISALLOW_COPY_AND_ASSIGN(SyncChangeProcessorWrapperForTest);
34 }; 34 };
35 35
36 } // namespace syncer 36 } // namespace syncer
37 37
38 #endif // SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_ 38 #endif // SYNC_API_SYNC_CHANGE_PROCESSOR_WRAPPER_FOR_TEST_H_
OLDNEW
« no previous file with comments | « sync/api/fake_syncable_service.h ('k') | sync/api/syncable_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698