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

Side by Side Diff: content/public/browser/resource_dispatcher_host_delegate.h

Issue 8680036: Move ResourceResponse struct into the Content API, since it's used in Chrome. While at it, I also... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: add gypi changes Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/resource_response.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/resource_response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698