| 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 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 #include "ipc/ipc_message.h" | |
| 13 #include "webkit/glue/resource_type.h" | 12 #include "webkit/glue/resource_type.h" |
| 14 | 13 |
| 15 class GURL; | 14 class GURL; |
| 16 template <class T> class ScopedVector; | 15 template <class T> class ScopedVector; |
| 17 | 16 |
| 18 namespace appcache { | 17 namespace appcache { |
| 19 class AppCacheService; | 18 class AppCacheService; |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace content { | 21 namespace content { |
| 23 class ResourceContext; | 22 class ResourceContext; |
| 24 class ResourceThrottle; | 23 class ResourceThrottle; |
| 25 struct Referrer; | 24 struct Referrer; |
| 26 struct ResourceResponse; | 25 struct ResourceResponse; |
| 27 } | 26 } |
| 28 | 27 |
| 28 namespace IPC { |
| 29 class Sender; |
| 30 } |
| 31 |
| 29 namespace net { | 32 namespace net { |
| 30 class AuthChallengeInfo; | 33 class AuthChallengeInfo; |
| 31 class SSLCertRequestInfo; | 34 class SSLCertRequestInfo; |
| 32 class URLRequest; | 35 class URLRequest; |
| 33 } | 36 } |
| 34 | 37 |
| 35 namespace content { | 38 namespace content { |
| 36 | 39 |
| 37 class ResourceDispatcherHostLoginDelegate; | 40 class ResourceDispatcherHostLoginDelegate; |
| 38 | 41 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 ResourceResponse* response); | 125 ResourceResponse* response); |
| 123 | 126 |
| 124 protected: | 127 protected: |
| 125 ResourceDispatcherHostDelegate(); | 128 ResourceDispatcherHostDelegate(); |
| 126 virtual ~ResourceDispatcherHostDelegate(); | 129 virtual ~ResourceDispatcherHostDelegate(); |
| 127 }; | 130 }; |
| 128 | 131 |
| 129 } // namespace content | 132 } // namespace content |
| 130 | 133 |
| 131 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 134 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| OLD | NEW |