| 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_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_SERVICE_H_ | 5 #ifndef COMPONENTS_SYNC_CORE_ATTACHMENTS_ATTACHMENT_SERVICE_H_ |
| 6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_SERVICE_H_ | 6 #define COMPONENTS_SYNC_CORE_ATTACHMENTS_ATTACHMENT_SERVICE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "sync/api/attachments/attachment.h" | 12 #include "components/sync/api/attachments/attachment.h" |
| 13 #include "sync/base/sync_export.h" | 13 #include "components/sync/base/sync_export.h" |
| 14 | 14 |
| 15 namespace syncer { | 15 namespace syncer { |
| 16 | 16 |
| 17 class AttachmentStore; | 17 class AttachmentStore; |
| 18 class SyncData; | 18 class SyncData; |
| 19 | 19 |
| 20 // AttachmentService is responsible for managing a model type's attachments. | 20 // AttachmentService is responsible for managing a model type's attachments. |
| 21 // | 21 // |
| 22 // Outside of sync code, AttachmentService shouldn't be used directly. Instead | 22 // Outside of sync code, AttachmentService shouldn't be used directly. Instead |
| 23 // use the functionality provided by SyncData and SyncChangeProcessor. | 23 // use the functionality provided by SyncData and SyncChangeProcessor. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // automatically retried if transient errors occur. | 66 // automatically retried if transient errors occur. |
| 67 // | 67 // |
| 68 // A request to upload attachments does not persist across restarts of Chrome. | 68 // A request to upload attachments does not persist across restarts of Chrome. |
| 69 // | 69 // |
| 70 // Invokes OnAttachmentUploaded on the Delegate (if provided). | 70 // Invokes OnAttachmentUploaded on the Delegate (if provided). |
| 71 virtual void UploadAttachments(const AttachmentIdList& attachment_ids) = 0; | 71 virtual void UploadAttachments(const AttachmentIdList& attachment_ids) = 0; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace syncer | 74 } // namespace syncer |
| 75 | 75 |
| 76 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_SERVICE_H_ | 76 #endif // COMPONENTS_SYNC_CORE_ATTACHMENTS_ATTACHMENT_SERVICE_H_ |
| OLD | NEW |