summaryrefslogtreecommitdiffstats
path: root/webkit/child/resource_loader_bridge.h
diff options
context:
space:
mode:
authorpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-11 16:24:41 +0000
committerpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-11 16:24:41 +0000
commit14f154a965b9776b560d088a0df984fa168c50cb (patch)
tree0a094cf65b9b72aaebf4e33716d6fc77f1a936ef /webkit/child/resource_loader_bridge.h
parenta94359b153f177ad0de2fa9906301307dd032d06 (diff)
downloadchromium_src-14f154a965b9776b560d088a0df984fa168c50cb.zip
chromium_src-14f154a965b9776b560d088a0df984fa168c50cb.tar.gz
chromium_src-14f154a965b9776b560d088a0df984fa168c50cb.tar.bz2
Move resource_request_body.cc/h to content/common/
BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/176993014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256248 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/child/resource_loader_bridge.h')
-rw-r--r--webkit/child/resource_loader_bridge.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/webkit/child/resource_loader_bridge.h b/webkit/child/resource_loader_bridge.h
index 2a54d616..7532386 100644
--- a/webkit/child/resource_loader_bridge.h
+++ b/webkit/child/resource_loader_bridge.h
@@ -33,8 +33,13 @@
#include "webkit/common/resource_response_info.h"
#include "webkit/common/resource_type.h"
-namespace webkit_glue {
+// TODO(pilgrim) remove this once resource loader is moved to content
+// http://crbug.com/338338
+namespace content {
class ResourceRequestBody;
+}
+
+namespace webkit_glue {
class ResourceLoaderBridge {
public:
@@ -191,7 +196,7 @@ class ResourceLoaderBridge {
// Call this method before calling Start() to set the request body.
// May only be used with HTTP(S) POST requests.
- virtual void SetRequestBody(ResourceRequestBody* request_body) = 0;
+ virtual void SetRequestBody(content::ResourceRequestBody* request_body) = 0;
// Call this method to initiate the request. If this method succeeds, then
// the peer's methods will be called asynchronously to report various events.