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

Unified Diff: chrome_frame/bind_context_info.cc

Issue 6825055: Include base/win/scoped_comptr.h instead of base/scoped_comptr_win.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert bad indentation, rebase Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/bind_context_info.h ('k') | chrome_frame/bind_status_callback_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/bind_context_info.cc
diff --git a/chrome_frame/bind_context_info.cc b/chrome_frame/bind_context_info.cc
index 89d6991a857f64bffd749075615c1498669b9984..bfdf89a20d73852e363f0879bf59c6e914b6adc9 100644
--- a/chrome_frame/bind_context_info.cc
+++ b/chrome_frame/bind_context_info.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -39,11 +39,11 @@ HRESULT BindContextInfo::FromBindContext(IBindCtx* bind_context,
return E_POINTER;
}
- ScopedComPtr<IUnknown> context;
+ base::win::ScopedComPtr<IUnknown> context;
HRESULT hr = bind_context->GetObjectParam(kBindContextInfo,
context.Receive());
if (context) {
- ScopedComPtr<IBindContextInfoInternal> internal;
+ base::win::ScopedComPtr<IBindContextInfoInternal> internal;
hr = internal.QueryFrom(context);
if (SUCCEEDED(hr)) {
hr = internal->GetCppObject(reinterpret_cast<void**>(info));
« no previous file with comments | « chrome_frame/bind_context_info.h ('k') | chrome_frame/bind_status_callback_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698