| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_REQUEST_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_H_ |
| 6 #define NET_URL_REQUEST_URL_REQUEST_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 12 #include "base/time.h" | |
| 13 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 14 #include "net/base/load_states.h" | 13 #include "net/base/load_states.h" |
| 15 #include "net/http/http_response_info.h" | 14 #include "net/http/http_response_info.h" |
| 16 #include "net/url_request/url_request_status.h" | 15 #include "net/url_request/url_request_status.h" |
| 17 | 16 |
| 17 namespace base { |
| 18 class Time; |
| 19 } |
| 20 |
| 18 namespace net { | 21 namespace net { |
| 19 | 22 |
| 20 class IOBuffer; | 23 class IOBuffer; |
| 21 class UploadData; | 24 class UploadData; |
| 22 class X509Certificate; | 25 class X509Certificate; |
| 23 | 26 |
| 24 } | 27 } |
| 25 | 28 |
| 26 class URLRequestContext; | 29 class URLRequestContext; |
| 27 class URLRequestJob; | 30 class URLRequestJob; |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 #define URLREQUEST_COUNT_DTOR() url_request_metrics.object_count-- | 527 #define URLREQUEST_COUNT_DTOR() url_request_metrics.object_count-- |
| 525 | 528 |
| 526 #else // disable leak checking in release builds... | 529 #else // disable leak checking in release builds... |
| 527 | 530 |
| 528 #define URLREQUEST_COUNT_CTOR() | 531 #define URLREQUEST_COUNT_CTOR() |
| 529 #define URLREQUEST_COUNT_DTOR() | 532 #define URLREQUEST_COUNT_DTOR() |
| 530 | 533 |
| 531 #endif // #ifndef NDEBUG | 534 #endif // #ifndef NDEBUG |
| 532 | 535 |
| 533 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 536 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
| OLD | NEW |