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

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

Issue 197043005: original change (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: fix other build error Created 6 years, 9 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
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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 delete url_request_; 91 delete url_request_;
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, NULL);
102 return request.Pass(); 102 return request.Pass();
103 } 103 }
OLDNEW
« no previous file with comments | « chrome/browser/plugins/plugin_installer.cc ('k') | chrome/browser/ui/views/ssl_client_certificate_selector_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698