OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_PUBLIC_TEST_TEST_DOWNLOAD_REQUEST_HANDLER_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_TEST_DOWNLOAD_REQUEST_HANDLER_H_ |
6 #define CONTENT_PUBLIC_TEST_TEST_DOWNLOAD_REQUEST_HANDLER_H_ | 6 #define CONTENT_PUBLIC_TEST_TEST_DOWNLOAD_REQUEST_HANDLER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 |
| 10 #include <memory> |
9 #include <queue> | 11 #include <queue> |
10 | 12 |
11 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
12 #include "base/files/file.h" | 14 #include "base/files/file.h" |
13 #include "base/macros.h" | 15 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | |
15 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
16 #include "base/threading/non_thread_safe.h" | 17 #include "base/threading/non_thread_safe.h" |
17 #include "net/base/completion_callback.h" | 18 #include "net/base/completion_callback.h" |
18 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
19 #include "net/http/http_byte_range.h" | 20 #include "net/http/http_byte_range.h" |
20 #include "net/http/http_response_headers.h" | 21 #include "net/http/http_response_headers.h" |
21 #include "net/http/http_util.h" | 22 #include "net/http/http_util.h" |
22 #include "net/url_request/url_request_job.h" | 23 #include "net/url_request/url_request_job.h" |
23 #include "url/gurl.h" | 24 #include "url/gurl.h" |
24 | 25 |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 class PartialResponseJob; | 298 class PartialResponseJob; |
298 | 299 |
299 GURL url_; | 300 GURL url_; |
300 base::WeakPtr<Interceptor> interceptor_; | 301 base::WeakPtr<Interceptor> interceptor_; |
301 DISALLOW_COPY_AND_ASSIGN(TestDownloadRequestHandler); | 302 DISALLOW_COPY_AND_ASSIGN(TestDownloadRequestHandler); |
302 }; | 303 }; |
303 | 304 |
304 } // namespace content | 305 } // namespace content |
305 | 306 |
306 #endif // CONTENT_PUBLIC_TEST_TEST_DOWNLOAD_REQUEST_HANDLER_H_ | 307 #endif // CONTENT_PUBLIC_TEST_TEST_DOWNLOAD_REQUEST_HANDLER_H_ |
OLD | NEW |