| OLD | NEW |
| 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_ATTACHMENTS_ATTACHMENT_STORE_H_ | 5 #ifndef COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_STORE_H_ |
| 6 #define SYNC_API_ATTACHMENTS_ATTACHMENT_STORE_H_ | 6 #define COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_STORE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "sync/api/attachments/attachment.h" | 13 #include "components/sync/api/attachments/attachment.h" |
| 14 #include "sync/api/attachments/attachment_id.h" | 14 #include "components/sync/api/attachments/attachment_id.h" |
| 15 #include "sync/api/attachments/attachment_metadata.h" | 15 #include "components/sync/api/attachments/attachment_metadata.h" |
| 16 #include "sync/base/sync_export.h" | 16 #include "components/sync/base/sync_export.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class FilePath; | 19 class FilePath; |
| 20 class SequencedTaskRunner; | 20 class SequencedTaskRunner; |
| 21 } // namespace base | 21 } // namespace base |
| 22 | 22 |
| 23 namespace syncer { | 23 namespace syncer { |
| 24 | 24 |
| 25 class AttachmentStoreBackend; | 25 class AttachmentStoreBackend; |
| 26 class AttachmentStoreForSync; | 26 class AttachmentStoreForSync; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 | 201 |
| 202 // |sync_component_| is passed to frontend when sync related operations are | 202 // |sync_component_| is passed to frontend when sync related operations are |
| 203 // perfromed. | 203 // perfromed. |
| 204 const Component sync_component_; | 204 const Component sync_component_; |
| 205 | 205 |
| 206 DISALLOW_COPY_AND_ASSIGN(AttachmentStoreForSync); | 206 DISALLOW_COPY_AND_ASSIGN(AttachmentStoreForSync); |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 } // namespace syncer | 209 } // namespace syncer |
| 210 | 210 |
| 211 #endif // SYNC_API_ATTACHMENTS_ATTACHMENT_STORE_H_ | 211 #endif // COMPONENTS_SYNC_API_ATTACHMENTS_ATTACHMENT_STORE_H_ |
| OLD | NEW |