| 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_CORE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ |
| 6 #define COMPONENTS_SYNC_CORE_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 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "components/sync/api/attachments/attachment.h" | 12 #include "components/sync/api/attachments/attachment.h" |
| 13 #include "components/sync/base/model_type.h" | 13 #include "components/sync/base/model_type.h" |
| 14 #include "google_apis/gaia/oauth2_token_service_request.h" | 14 #include "google_apis/gaia/oauth2_token_service_request.h" |
| 15 | 15 |
| 16 namespace net { | 16 namespace net { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 37 virtual ~AttachmentDownloader(); | 37 virtual ~AttachmentDownloader(); |
| 38 | 38 |
| 39 // Download attachment referred by |attachment_id| and invoke |callback| when | 39 // Download attachment referred by |attachment_id| and invoke |callback| when |
| 40 // done. | 40 // done. |
| 41 // | 41 // |
| 42 // |callback| will receive a DownloadResult code and an Attachment object. If | 42 // |callback| will receive a DownloadResult code and an Attachment object. If |
| 43 // DownloadResult is not DOWNLOAD_SUCCESS then attachment pointer is NULL. | 43 // DownloadResult is not DOWNLOAD_SUCCESS then attachment pointer is NULL. |
| 44 virtual void DownloadAttachment(const AttachmentId& attachment_id, | 44 virtual void DownloadAttachment(const AttachmentId& attachment_id, |
| 45 const DownloadCallback& callback) = 0; | 45 const DownloadCallback& callback) = 0; |
| 46 | 46 |
| 47 // Create instance of AttachmentDownloaderImpl. | 47 // Create an instance of AttachmentDownloader. |
| 48 // |
| 48 // |sync_service_url| is the URL of the sync service. | 49 // |sync_service_url| is the URL of the sync service. |
| 49 // | 50 // |
| 50 // |url_request_context_getter| provides a URLRequestContext. | 51 // |url_request_context_getter| provides a URLRequestContext. |
| 51 // | 52 // |
| 52 // |account_id| is the account id to use for downloads. | 53 // |account_id| is the account id to use for downloads. |
| 53 // | 54 // |
| 54 // |scopes| is the set of scopes to use for downloads. | 55 // |scopes| is the set of scopes to use for downloads. |
| 55 // | 56 // |
| 56 // |token_service_provider| provides an OAuth2 token service. | 57 // |token_service_provider| provides an OAuth2 token service. |
| 57 // | 58 // |
| 58 // |store_birthday| is the raw, sync store birthday. | 59 // |store_birthday| is the raw, sync store birthday. |
| 59 // | 60 // |
| 60 // |model_type| is the model type this downloader is used with. | 61 // |model_type| is the model type this downloader is used with. |
| 61 static std::unique_ptr<AttachmentDownloader> Create( | 62 static std::unique_ptr<AttachmentDownloader> Create( |
| 62 const GURL& sync_service_url, | 63 const GURL& sync_service_url, |
| 63 const scoped_refptr<net::URLRequestContextGetter>& | 64 const scoped_refptr<net::URLRequestContextGetter>& |
| 64 url_request_context_getter, | 65 url_request_context_getter, |
| 65 const std::string& account_id, | 66 const std::string& account_id, |
| 66 const OAuth2TokenService::ScopeSet scopes, | 67 const OAuth2TokenService::ScopeSet scopes, |
| 67 const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>& | 68 const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>& |
| 68 token_service_provider, | 69 token_service_provider, |
| 69 const std::string& store_birthday, | 70 const std::string& store_birthday, |
| 70 ModelType model_type); | 71 ModelType model_type); |
| 71 }; | 72 }; |
| 72 | 73 |
| 73 } // namespace syncer | 74 } // namespace syncer |
| 74 | 75 |
| 75 #endif // COMPONENTS_SYNC_CORE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ | 76 #endif // COMPONENTS_SYNC_ENGINE_ATTACHMENTS_ATTACHMENT_DOWNLOADER_H_ |
| OLD | NEW |