| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 // this to determine which URLRequest to allocate sockets to first. | 639 // this to determine which URLRequest to allocate sockets to first. |
| 640 net::RequestPriority priority_; | 640 net::RequestPriority priority_; |
| 641 | 641 |
| 642 base::debug::LeakTracker<URLRequest> leak_tracker_; | 642 base::debug::LeakTracker<URLRequest> leak_tracker_; |
| 643 | 643 |
| 644 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 644 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
| 645 }; | 645 }; |
| 646 | 646 |
| 647 } // namespace net | 647 } // namespace net |
| 648 | 648 |
| 649 typedef net::URLRequest URLRequest; | |
| 650 | |
| 651 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 649 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
| OLD | NEW |