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

Side by Side Diff: components/sync_driver/generic_change_processor_factory.h

Issue 1866243002: Convert //sync from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
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 COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ 5 #ifndef COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_
6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ 6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
10 #include "sync/internal_api/public/base/model_type.h" 11 #include "sync/internal_api/public/base/model_type.h"
11 12
12 namespace syncer { 13 namespace syncer {
13 class AttachmentService; 14 class AttachmentService;
14 class SyncableService; 15 class SyncableService;
15 class SyncMergeResult; 16 class SyncMergeResult;
16 struct UserShare; 17 struct UserShare;
17 } 18 }
18 19
(...skipping 24 matching lines...) Expand all
43 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, 44 const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
44 SyncClient* sync_client); 45 SyncClient* sync_client);
45 46
46 private: 47 private:
47 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessorFactory); 48 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessorFactory);
48 }; 49 };
49 50
50 } // namespace sync_driver 51 } // namespace sync_driver
51 52
52 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_ 53 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698