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

Side by Side Diff: content/common/net/url_fetcher.cc

Issue 2815913005: Switch to using scoped_ptr with UserData (Closed)
Patch Set: rebase Created 3 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 unified diff | Download patch
« no previous file with comments | « content/browser/webui/url_data_manager.cc ('k') | content/public/browser/browser_context.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) 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/public/common/url_fetcher.h" 5 #include "content/public/common/url_fetcher.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ptr_util.h"
8 #include "content/common/net/url_request_user_data.h" 9 #include "content/common/net/url_request_user_data.h"
9 #include "net/url_request/url_fetcher.h" 10 #include "net/url_request/url_fetcher.h"
10 11
11 namespace content { 12 namespace content {
12 13
13 namespace { 14 namespace {
14 15
15 base::SupportsUserData::Data* CreateURLRequestUserData(int render_process_id, 16 std::unique_ptr<base::SupportsUserData::Data> CreateURLRequestUserData(
16 int render_frame_id) { 17 int render_process_id,
17 return new URLRequestUserData(render_process_id, render_frame_id); 18 int render_frame_id) {
19 return base::MakeUnique<URLRequestUserData>(render_process_id,
20 render_frame_id);
18 } 21 }
19 22
20 } // namespace 23 } // namespace
21 24
22 void AssociateURLFetcherWithRenderFrame( 25 void AssociateURLFetcherWithRenderFrame(
23 net::URLFetcher* url_fetcher, 26 net::URLFetcher* url_fetcher,
24 const base::Optional<url::Origin>& initiator, 27 const base::Optional<url::Origin>& initiator,
25 int render_process_id, 28 int render_process_id,
26 int render_frame_id) { 29 int render_frame_id) {
27 url_fetcher->SetInitiator(initiator); 30 url_fetcher->SetInitiator(initiator);
28 url_fetcher->SetURLRequestUserData( 31 url_fetcher->SetURLRequestUserData(
29 URLRequestUserData::kUserDataKey, 32 URLRequestUserData::kUserDataKey,
30 base::Bind(&CreateURLRequestUserData, render_process_id, 33 base::Bind(&CreateURLRequestUserData, render_process_id,
31 render_frame_id)); 34 render_frame_id));
32 } 35 }
33 36
34 } // namespace content 37 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/webui/url_data_manager.cc ('k') | content/public/browser/browser_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698