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

Side by Side Diff: chrome/browser/ssl/ssl_client_certificate_selector_test.cc

Issue 1551503002: Convert Pass()→std::move() in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 "chrome/browser/ssl/ssl_client_certificate_selector_test.h" 5 #include "chrome/browser/ssl/ssl_client_certificate_selector_test.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 io_loop_finished_event_.Signal(); 93 io_loop_finished_event_.Signal();
94 } 94 }
95 95
96 scoped_ptr<net::URLRequest> 96 scoped_ptr<net::URLRequest>
97 SSLClientCertificateSelectorTestBase::MakeURLRequest( 97 SSLClientCertificateSelectorTestBase::MakeURLRequest(
98 net::URLRequestContextGetter* context_getter) { 98 net::URLRequestContextGetter* context_getter) {
99 scoped_ptr<net::URLRequest> request = 99 scoped_ptr<net::URLRequest> request =
100 context_getter->GetURLRequestContext()->CreateRequest( 100 context_getter->GetURLRequestContext()->CreateRequest(
101 GURL("https://example"), net::DEFAULT_PRIORITY, NULL); 101 GURL("https://example"), net::DEFAULT_PRIORITY, NULL);
102 return request.Pass(); 102 return request;
103 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698