OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_frame/bind_status_callback_impl.h" | 5 #include "chrome_frame/bind_status_callback_impl.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/string_util.h" | 8 #include "base/strings/string_util.h" |
9 #include "base/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "base/threading/platform_thread.h" | 10 #include "base/threading/platform_thread.h" |
11 | 11 |
12 BSCBImpl::BSCBImpl() { | 12 BSCBImpl::BSCBImpl() { |
13 DVLOG(1) << __FUNCTION__ << me(); | 13 DVLOG(1) << __FUNCTION__ << me(); |
14 } | 14 } |
15 | 15 |
16 BSCBImpl::~BSCBImpl() { | 16 BSCBImpl::~BSCBImpl() { |
17 DVLOG(1) << __FUNCTION__ << me(); | 17 DVLOG(1) << __FUNCTION__ << me(); |
18 } | 18 } |
19 | 19 |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 HRESULT hr = S_OK; | 224 HRESULT hr = S_OK; |
225 if (delegate_) { | 225 if (delegate_) { |
226 base::win::ScopedComPtr<IHttpNegotiate3> http_negotiate; | 226 base::win::ScopedComPtr<IHttpNegotiate3> http_negotiate; |
227 http_negotiate.QueryFrom(delegate_); | 227 http_negotiate.QueryFrom(delegate_); |
228 if (http_negotiate) { | 228 if (http_negotiate) { |
229 return http_negotiate->GetSerializedClientCertContext(cert, cert_size); | 229 return http_negotiate->GetSerializedClientCertContext(cert, cert_size); |
230 } | 230 } |
231 } | 231 } |
232 return hr; | 232 return hr; |
233 } | 233 } |
OLD | NEW |