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_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/debug/leak_tracker.h" | 11 #include "base/debug/leak_tracker.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "base/supports_user_data.h" | 15 #include "base/supports_user_data.h" |
16 #include "base/time.h" | 16 #include "base/time.h" |
17 #include "base/threading/non_thread_safe.h" | 17 #include "base/threading/non_thread_safe.h" |
18 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
19 #include "net/base/auth.h" | 19 #include "net/base/auth.h" |
20 #include "net/base/completion_callback.h" | 20 #include "net/base/completion_callback.h" |
21 #include "net/base/load_states.h" | 21 #include "net/base/load_states.h" |
22 #include "net/base/load_timing_info.h" | 22 #include "net/base/load_timing_info.h" |
23 #include "net/base/net_export.h" | 23 #include "net/base/net_export.h" |
24 #include "net/base/net_log.h" | 24 #include "net/base/net_log.h" |
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 LoadTimingInfo load_timing_info_; | 838 LoadTimingInfo load_timing_info_; |
839 | 839 |
840 scoped_ptr<const base::debug::StackTrace> stack_trace_; | 840 scoped_ptr<const base::debug::StackTrace> stack_trace_; |
841 | 841 |
842 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 842 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
843 }; | 843 }; |
844 | 844 |
845 } // namespace net | 845 } // namespace net |
846 | 846 |
847 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 847 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
OLD | NEW |