OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 class AppCacheRequestHandlerTest; | 47 class AppCacheRequestHandlerTest; |
48 class AppCacheURLRequestJobTest; | 48 class AppCacheURLRequestJobTest; |
49 } | 49 } |
50 | 50 |
51 namespace base { | 51 namespace base { |
52 class Time; | 52 class Time; |
53 } // namespace base | 53 } // namespace base |
54 | 54 |
55 // Temporary layering violation to allow existing users of a deprecated | 55 // Temporary layering violation to allow existing users of a deprecated |
56 // interface. | 56 // interface. |
57 namespace chrome_browser_net { | |
58 class ConnectInterceptor; | |
59 } | |
60 | |
61 // Temporary layering violation to allow existing users of a deprecated | |
62 // interface. | |
63 namespace fileapi { | 57 namespace fileapi { |
64 class FileSystemDirURLRequestJobTest; | 58 class FileSystemDirURLRequestJobTest; |
65 class FileSystemOperationWriteTest; | 59 class FileSystemOperationWriteTest; |
66 class FileSystemURLRequestJobTest; | 60 class FileSystemURLRequestJobTest; |
67 class FileWriterDelegateTest; | 61 class FileWriterDelegateTest; |
68 } | 62 } |
69 | 63 |
70 // Temporary layering violation to allow existing users of a deprecated | 64 // Temporary layering violation to allow existing users of a deprecated |
71 // interface. | 65 // interface. |
72 namespace policy { | 66 namespace policy { |
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 // the authentication challenge being handled by |NotifyAuthRequired|. | 813 // the authentication challenge being handled by |NotifyAuthRequired|. |
820 AuthCredentials auth_credentials_; | 814 AuthCredentials auth_credentials_; |
821 scoped_refptr<AuthChallengeInfo> auth_info_; | 815 scoped_refptr<AuthChallengeInfo> auth_info_; |
822 | 816 |
823 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 817 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
824 }; | 818 }; |
825 | 819 |
826 } // namespace net | 820 } // namespace net |
827 | 821 |
828 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 822 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
OLD | NEW |