| 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 COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ |
| 6 #define COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ | 6 #define COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 class AttachmentDownloader { | 23 class AttachmentDownloader { |
| 24 public: | 24 public: |
| 25 // The result of a DownloadAttachment operation. | 25 // The result of a DownloadAttachment operation. |
| 26 enum DownloadResult { | 26 enum DownloadResult { |
| 27 DOWNLOAD_SUCCESS, // No error, attachment was downloaded | 27 DOWNLOAD_SUCCESS, // No error, attachment was downloaded |
| 28 // successfully. | 28 // successfully. |
| 29 DOWNLOAD_TRANSIENT_ERROR, // A transient error occurred, try again later. | 29 DOWNLOAD_TRANSIENT_ERROR, // A transient error occurred, try again later. |
| 30 DOWNLOAD_UNSPECIFIED_ERROR, // An unspecified error occurred. | 30 DOWNLOAD_UNSPECIFIED_ERROR, // An unspecified error occurred. |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 typedef base::Callback<void(const DownloadResult&, | 33 using DownloadCallback = |
| 34 std::unique_ptr<Attachment>)> | 34 base::Callback<void(const DownloadResult&, std::unique_ptr<Attachment>)>; |
| 35 DownloadCallback; | |
| 36 | 35 |
| 37 virtual ~AttachmentDownloader(); | 36 virtual ~AttachmentDownloader(); |
| 38 | 37 |
| 39 // Download attachment referred by |attachment_id| and invoke |callback| when | 38 // Download attachment referred by |attachment_id| and invoke |callback| when |
| 40 // done. | 39 // done. |
| 41 // | 40 // |
| 42 // |callback| will receive a DownloadResult code and an Attachment object. If | 41 // |callback| will receive a DownloadResult code and an Attachment object. If |
| 43 // DownloadResult is not DOWNLOAD_SUCCESS then attachment pointer is null. | 42 // DownloadResult is not DOWNLOAD_SUCCESS then attachment pointer is null. |
| 44 virtual void DownloadAttachment(const AttachmentId& attachment_id, | 43 virtual void DownloadAttachment(const AttachmentId& attachment_id, |
| 45 const DownloadCallback& callback) = 0; | 44 const DownloadCallback& callback) = 0; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 67 const OAuth2TokenService::ScopeSet scopes, | 66 const OAuth2TokenService::ScopeSet scopes, |
| 68 const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>& | 67 const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>& |
| 69 token_service_provider, | 68 token_service_provider, |
| 70 const std::string& store_birthday, | 69 const std::string& store_birthday, |
| 71 ModelType model_type); | 70 ModelType model_type); |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace syncer | 73 } // namespace syncer |
| 75 | 74 |
| 76 #endif // COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ | 75 #endif // COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ |
| OLD | NEW |