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

Unified Diff: content/child/resource_dispatcher.cc

Issue 2008613002: ABANDONED CL: Making ResourceRequestBody part of //content's public API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@post-data-my-stuff
Patch Set: Rebasing... Created 4 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/resource_dispatcher.h ('k') | content/child/resource_dispatcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/resource_dispatcher.cc
diff --git a/content/child/resource_dispatcher.cc b/content/child/resource_dispatcher.cc
index 05603a5140fc99172fa9a202350b3e4f1ad38016..33188664574aba40dd90851aa2a08d31d1e95956 100644
--- a/content/child/resource_dispatcher.cc
+++ b/content/child/resource_dispatcher.cc
@@ -543,7 +543,7 @@ void ResourceDispatcher::FlushDeferredMessages(int request_id) {
}
void ResourceDispatcher::StartSync(const RequestInfo& request_info,
- ResourceRequestBody* request_body,
+ ResourceRequestBodyImpl* request_body,
SyncLoadResponse* response) {
std::unique_ptr<ResourceRequest> request =
CreateRequest(request_info, request_body, NULL);
@@ -574,7 +574,7 @@ void ResourceDispatcher::StartSync(const RequestInfo& request_info,
}
int ResourceDispatcher::StartAsync(const RequestInfo& request_info,
- ResourceRequestBody* request_body,
+ ResourceRequestBodyImpl* request_body,
std::unique_ptr<RequestPeer> peer) {
GURL frame_origin;
std::unique_ptr<ResourceRequest> request =
@@ -735,7 +735,7 @@ void ResourceDispatcher::ReleaseResourcesInMessageQueue(MessageQueue* queue) {
std::unique_ptr<ResourceRequest> ResourceDispatcher::CreateRequest(
const RequestInfo& request_info,
- ResourceRequestBody* request_body,
+ ResourceRequestBodyImpl* request_body,
GURL* frame_origin) {
std::unique_ptr<ResourceRequest> request(new ResourceRequest);
request->method = request_info.method;
« no previous file with comments | « content/child/resource_dispatcher.h ('k') | content/child/resource_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698