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

Side by Side Diff: content/browser/loader/resource_request_info_impl.cc

Issue 2960023002: Remove SupportsUserData from ResourceRequestBodyImpl. (Closed)
Patch Set: Merge, response to comment Created 3 years, 5 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 unified diff | Download patch
OLDNEW
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 #include "content/browser/loader/resource_request_info_impl.h" 5 #include "content/browser/loader/resource_request_info_impl.h"
6 6
7 #include "content/browser/frame_host/frame_tree_node.h" 7 #include "content/browser/frame_host/frame_tree_node.h"
8 #include "content/browser/loader/global_routing_id.h" 8 #include "content/browser/loader/global_routing_id.h"
9 #include "content/browser/loader/resource_message_filter.h" 9 #include "content/browser/loader/resource_message_filter.h"
10 #include "content/browser/web_contents/web_contents_impl.h" 10 #include "content/browser/web_contents/web_contents_impl.h"
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 if (on_transfer_) { 358 if (on_transfer_) {
359 on_transfer_.Run(std::move(url_loader_request), 359 on_transfer_.Run(std::move(url_loader_request),
360 std::move(url_loader_client)); 360 std::move(url_loader_client));
361 } 361 }
362 } 362 }
363 363
364 void ResourceRequestInfoImpl::ResetBody() { 364 void ResourceRequestInfoImpl::ResetBody() {
365 body_ = nullptr; 365 body_ = nullptr;
366 } 366 }
367 367
368 void ResourceRequestInfoImpl::SetBlobHandles(BlobHandles blob_handles) {
369 blob_handles_ = std::move(blob_handles);
370 }
371
368 } // namespace content 372 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/loader/resource_request_info_impl.h ('k') | content/common/resource_request_body_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698