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_DOWNLOADER_IMPL_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_DOWNLOADER_IMPL_H_ |
6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_DOWNLOADER_IMPL_H_ | 6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_DOWNLOADER_IMPL_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/containers/scoped_ptr_hash_map.h" | 13 #include "base/containers/scoped_ptr_hash_map.h" |
12 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" |
13 #include "base/threading/non_thread_safe.h" | 16 #include "base/threading/non_thread_safe.h" |
14 #include "google_apis/gaia/oauth2_token_service_request.h" | 17 #include "google_apis/gaia/oauth2_token_service_request.h" |
15 #include "net/url_request/url_fetcher_delegate.h" | 18 #include "net/url_request/url_fetcher_delegate.h" |
16 #include "net/url_request/url_request_context_getter.h" | 19 #include "net/url_request/url_request_context_getter.h" |
17 #include "sync/internal_api/public/attachments/attachment_downloader.h" | 20 #include "sync/internal_api/public/attachments/attachment_downloader.h" |
18 #include "sync/internal_api/public/base/model_type.h" | 21 #include "sync/internal_api/public/base/model_type.h" |
19 #include "url/gurl.h" | 22 #include "url/gurl.h" |
20 | 23 |
21 namespace base { | 24 namespace base { |
22 class RefCountedMemory; | 25 class RefCountedMemory; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 StateList requests_waiting_for_access_token_; | 123 StateList requests_waiting_for_access_token_; |
121 | 124 |
122 ModelType model_type_; | 125 ModelType model_type_; |
123 | 126 |
124 DISALLOW_COPY_AND_ASSIGN(AttachmentDownloaderImpl); | 127 DISALLOW_COPY_AND_ASSIGN(AttachmentDownloaderImpl); |
125 }; | 128 }; |
126 | 129 |
127 } // namespace syncer | 130 } // namespace syncer |
128 | 131 |
129 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_DOWNLOADER_IMPL_H_ | 132 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_DOWNLOADER_IMPL_H_ |
OLD | NEW |