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 "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "webkit/common/resource_type.h" | 13 #include "content/public/common/resource_type.h" |
14 | 14 |
15 class GURL; | 15 class GURL; |
16 template <class T> class ScopedVector; | 16 template <class T> class ScopedVector; |
17 | 17 |
18 namespace IPC { | 18 namespace IPC { |
19 class Sender; | 19 class Sender; |
20 } | 20 } |
21 | 21 |
22 namespace net { | 22 namespace net { |
23 class AuthChallengeInfo; | 23 class AuthChallengeInfo; |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 virtual void RequestComplete(net::URLRequest* url_request); | 131 virtual void RequestComplete(net::URLRequest* url_request); |
132 | 132 |
133 protected: | 133 protected: |
134 ResourceDispatcherHostDelegate(); | 134 ResourceDispatcherHostDelegate(); |
135 virtual ~ResourceDispatcherHostDelegate(); | 135 virtual ~ResourceDispatcherHostDelegate(); |
136 }; | 136 }; |
137 | 137 |
138 } // namespace content | 138 } // namespace content |
139 | 139 |
140 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 140 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
OLD | NEW |