| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 NET_URL_REQUEST_URL_FETCHER_CORE_H_ | 5 #ifndef NET_URL_REQUEST_URL_FETCHER_CORE_H_ |
| 6 #define NET_URL_REQUEST_URL_FETCHER_CORE_H_ | 6 #define NET_URL_REQUEST_URL_FETCHER_CORE_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/debug/stack_trace.h" | 13 #include "base/debug/stack_trace.h" |
| 14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 15 #include "base/lazy_instance.h" | 15 #include "base/lazy_instance.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 18 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
| 19 #include "googleurl/src/gurl.h" | |
| 20 #include "net/base/host_port_pair.h" | 19 #include "net/base/host_port_pair.h" |
| 21 #include "net/http/http_request_headers.h" | 20 #include "net/http/http_request_headers.h" |
| 22 #include "net/url_request/url_fetcher.h" | 21 #include "net/url_request/url_fetcher.h" |
| 23 #include "net/url_request/url_request.h" | 22 #include "net/url_request/url_request.h" |
| 24 #include "net/url_request/url_request_status.h" | 23 #include "net/url_request/url_request_status.h" |
| 24 #include "url/gurl.h" |
| 25 | 25 |
| 26 namespace base { | 26 namespace base { |
| 27 class SingleThreadTaskRunner; | 27 class SingleThreadTaskRunner; |
| 28 } // namespace base | 28 } // namespace base |
| 29 | 29 |
| 30 namespace net { | 30 namespace net { |
| 31 class DrainableIOBuffer; | 31 class DrainableIOBuffer; |
| 32 class HttpResponseHeaders; | 32 class HttpResponseHeaders; |
| 33 class IOBuffer; | 33 class IOBuffer; |
| 34 class URLFetcherDelegate; | 34 class URLFetcherDelegate; |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 base::debug::StackTrace stack_trace_; | 340 base::debug::StackTrace stack_trace_; |
| 341 | 341 |
| 342 static base::LazyInstance<Registry> g_registry; | 342 static base::LazyInstance<Registry> g_registry; |
| 343 | 343 |
| 344 DISALLOW_COPY_AND_ASSIGN(URLFetcherCore); | 344 DISALLOW_COPY_AND_ASSIGN(URLFetcherCore); |
| 345 }; | 345 }; |
| 346 | 346 |
| 347 } // namespace net | 347 } // namespace net |
| 348 | 348 |
| 349 #endif // NET_URL_REQUEST_URL_FETCHER_CORE_H_ | 349 #endif // NET_URL_REQUEST_URL_FETCHER_CORE_H_ |
| OLD | NEW |