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

Side by Side Diff: chrome_frame/bind_status_callback_impl.cc

Issue 16391006: Use a direct include of strings headers in chrome_frame/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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_frame/bho.cc ('k') | chrome_frame/chrome_active_document.cc » ('j') | 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) 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
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 }
OLDNEW
« no previous file with comments | « chrome_frame/bho.cc ('k') | chrome_frame/chrome_active_document.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698