Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: net/http/http_network_transaction.h

Issue 115870: Reduce header dependencies in net/ (Closed)
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_HTTP_HTTP_NETWORK_TRANSACTION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/ref_counted.h" 10 #include "base/ref_counted.h"
11 #include "base/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
12 #include "base/time.h" 12 #include "base/time.h"
13 #include "net/base/address_list.h" 13 #include "net/base/address_list.h"
14 #include "net/base/client_socket_handle.h" 14 #include "net/base/client_socket_handle.h"
15 #include "net/base/host_resolver.h" 15 #include "net/base/host_resolver.h"
16 #include "net/base/io_buffer.h"
16 #include "net/base/ssl_config_service.h" 17 #include "net/base/ssl_config_service.h"
17 #include "net/http/http_auth.h" 18 #include "net/http/http_auth.h"
18 #include "net/http/http_auth_handler.h" 19 #include "net/http/http_auth_handler.h"
19 #include "net/http/http_response_info.h" 20 #include "net/http/http_response_info.h"
20 #include "net/http/http_transaction.h" 21 #include "net/http/http_transaction.h"
21 #include "net/proxy/proxy_service.h" 22 #include "net/proxy/proxy_service.h"
22 #include "testing/gtest/include/gtest/gtest_prod.h" 23 #include "testing/gtest/include/gtest/gtest_prod.h"
23 24
24 namespace net { 25 namespace net {
25 26
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 STATE_DRAIN_BODY_FOR_AUTH_RESTART, 385 STATE_DRAIN_BODY_FOR_AUTH_RESTART,
385 STATE_DRAIN_BODY_FOR_AUTH_RESTART_COMPLETE, 386 STATE_DRAIN_BODY_FOR_AUTH_RESTART_COMPLETE,
386 STATE_NONE 387 STATE_NONE
387 }; 388 };
388 State next_state_; 389 State next_state_;
389 }; 390 };
390 391
391 } // namespace net 392 } // namespace net
392 393
393 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 394 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698