OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SYNCABLE_SERVICE_H_ | 5 #ifndef SYNC_API_SYNCABLE_SERVICE_H_ |
6 #define SYNC_API_SYNCABLE_SERVICE_H_ | 6 #define SYNC_API_SYNCABLE_SERVICE_H_ |
7 #pragma once | |
8 | 7 |
9 #include <vector> | 8 #include <vector> |
10 | 9 |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
14 #include "sync/api/sync_change_processor.h" | 13 #include "sync/api/sync_change_processor.h" |
15 #include "sync/api/sync_data.h" | 14 #include "sync/api/sync_data.h" |
16 #include "sync/api/sync_error.h" | 15 #include "sync/api/sync_error.h" |
17 #include "sync/internal_api/public/base/model_type.h" | 16 #include "sync/internal_api/public/base/model_type.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 const tracked_objects::Location& from_here, | 59 const tracked_objects::Location& from_here, |
61 const SyncChangeList& change_list) OVERRIDE = 0; | 60 const SyncChangeList& change_list) OVERRIDE = 0; |
62 | 61 |
63 protected: | 62 protected: |
64 virtual ~SyncableService(); | 63 virtual ~SyncableService(); |
65 }; | 64 }; |
66 | 65 |
67 } // namespace syncer | 66 } // namespace syncer |
68 | 67 |
69 #endif // SYNC_API_SYNCABLE_SERVICE_H_ | 68 #endif // SYNC_API_SYNCABLE_SERVICE_H_ |
OLD | NEW |