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

Side by Side Diff: chrome/browser/google_apis/request_sender.cc

Issue 26707004: Hold URLRequestContextGetter by scoped_refptr in Drive related code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/google_apis/request_sender.h ('k') | no next file » | 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 "chrome/browser/google_apis/request_sender.h" 5 #include "chrome/browser/google_apis/request_sender.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "chrome/browser/google_apis/auth_service.h" 9 #include "chrome/browser/google_apis/auth_service.h"
10 #include "chrome/browser/google_apis/base_requests.h" 10 #include "chrome/browser/google_apis/base_requests.h"
11 #include "net/url_request/url_request_context_getter.h"
11 12
12 namespace google_apis { 13 namespace google_apis {
13 14
14 RequestSender::RequestSender( 15 RequestSender::RequestSender(
15 AuthServiceInterface* auth_service, 16 AuthServiceInterface* auth_service,
16 net::URLRequestContextGetter* url_request_context_getter, 17 net::URLRequestContextGetter* url_request_context_getter,
17 base::TaskRunner* blocking_task_runner, 18 base::TaskRunner* blocking_task_runner,
18 const std::string& custom_user_agent) 19 const std::string& custom_user_agent)
19 : auth_service_(auth_service), 20 : auth_service_(auth_service),
20 url_request_context_getter_(url_request_context_getter), 21 url_request_context_getter_(url_request_context_getter),
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 return; 96 return;
96 request->Cancel(); 97 request->Cancel();
97 } 98 }
98 99
99 void RequestSender::RequestFinished(AuthenticatedRequestInterface* request) { 100 void RequestSender::RequestFinished(AuthenticatedRequestInterface* request) {
100 in_flight_requests_.erase(request); 101 in_flight_requests_.erase(request);
101 delete request; 102 delete request;
102 } 103 }
103 104
104 } // namespace google_apis 105 } // namespace google_apis
OLDNEW
« no previous file with comments | « chrome/browser/google_apis/request_sender.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698