| 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 CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "webkit/glue/resource_type.h" | 12 #include "webkit/glue/resource_type.h" |
| 13 | 13 |
| 14 class GURL; | 14 class GURL; |
| 15 class ResourceDispatcherHostLoginDelegate; | 15 class ResourceDispatcherHostLoginDelegate; |
| 16 class ResourceHandler; | 16 class ResourceHandler; |
| 17 class ResourceMessageFilter; | 17 class ResourceMessageFilter; |
| 18 struct ResourceResponse; | |
| 19 | 18 |
| 20 namespace content { | 19 namespace content { |
| 21 class ResourceContext; | 20 class ResourceContext; |
| 21 struct ResourceResponse; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace net { | 24 namespace net { |
| 25 class AuthChallengeInfo; | 25 class AuthChallengeInfo; |
| 26 class SSLCertRequestInfo; | 26 class SSLCertRequestInfo; |
| 27 class URLRequest; | 27 class URLRequest; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace content { | 30 namespace content { |
| 31 | 31 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 ResourceMessageFilter* filter) = 0; | 120 ResourceMessageFilter* filter) = 0; |
| 121 | 121 |
| 122 protected: | 122 protected: |
| 123 ResourceDispatcherHostDelegate() {} | 123 ResourceDispatcherHostDelegate() {} |
| 124 virtual ~ResourceDispatcherHostDelegate() {} | 124 virtual ~ResourceDispatcherHostDelegate() {} |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 } // namespace content | 127 } // namespace content |
| 128 | 128 |
| 129 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 129 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| OLD | NEW |