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

Side by Side Diff: chrome/browser/chromeos/policy/policy_cert_verifier.cc

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/chromeos/policy/policy_cert_verifier.h" 5 #include "chrome/browser/chromeos/policy/policy_cert_verifier.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/browser_process.h" 8 #include "chrome/browser/browser_process.h"
9 #include "content/public/browser/browser_thread.h" 9 #include "content/public/browser/browser_thread.h"
10 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 } 69 }
70 70
71 int PolicyCertVerifier::Verify( 71 int PolicyCertVerifier::Verify(
72 net::X509Certificate* cert, 72 net::X509Certificate* cert,
73 const std::string& hostname, 73 const std::string& hostname,
74 const std::string& ocsp_response, 74 const std::string& ocsp_response,
75 int flags, 75 int flags,
76 net::CRLSet* crl_set, 76 net::CRLSet* crl_set,
77 net::CertVerifyResult* verify_result, 77 net::CertVerifyResult* verify_result,
78 const net::CompletionCallback& completion_callback, 78 const net::CompletionCallback& completion_callback,
79 scoped_ptr<Request>* out_req, 79 std::unique_ptr<Request>* out_req,
80 const net::BoundNetLog& net_log) { 80 const net::BoundNetLog& net_log) {
81 DCHECK_CURRENTLY_ON(content::BrowserThread::IO); 81 DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
82 DCHECK(delegate_); 82 DCHECK(delegate_);
83 net::CompletionCallback wrapped_callback = 83 net::CompletionCallback wrapped_callback =
84 base::Bind(&CompleteAndSignalAnchorUse, 84 base::Bind(&CompleteAndSignalAnchorUse,
85 anchor_used_callback_, 85 anchor_used_callback_,
86 completion_callback, 86 completion_callback,
87 verify_result); 87 verify_result);
88 int error = 88 int error =
89 delegate_->Verify(cert, hostname, ocsp_response, flags, crl_set, 89 delegate_->Verify(cert, hostname, ocsp_response, flags, crl_set,
90 verify_result, wrapped_callback, out_req, net_log); 90 verify_result, wrapped_callback, out_req, net_log);
91 MaybeSignalAnchorUse(error, anchor_used_callback_, *verify_result); 91 MaybeSignalAnchorUse(error, anchor_used_callback_, *verify_result);
92 return error; 92 return error;
93 } 93 }
94 94
95 bool PolicyCertVerifier::SupportsOCSPStapling() { 95 bool PolicyCertVerifier::SupportsOCSPStapling() {
96 DCHECK_CURRENTLY_ON(content::BrowserThread::IO); 96 DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
97 return delegate_->SupportsOCSPStapling(); 97 return delegate_->SupportsOCSPStapling();
98 } 98 }
99 99
100 const net::CertificateList& PolicyCertVerifier::GetAdditionalTrustAnchors() { 100 const net::CertificateList& PolicyCertVerifier::GetAdditionalTrustAnchors() {
101 DCHECK_CURRENTLY_ON(content::BrowserThread::IO); 101 DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
102 return trust_anchors_; 102 return trust_anchors_;
103 } 103 }
104 104
105 } // namespace policy 105 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698