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

Unified Diff: chrome_frame/com_message_event.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/com_message_event.h ('k') | chrome_frame/com_type_info_holder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/com_message_event.cc
diff --git a/chrome_frame/com_message_event.cc b/chrome_frame/com_message_event.cc
index 8535999209f094bbc8bdc95e9bb19a87f454e153..32f1fc6cc07bb66160d99b8210254afa4cda88a3 100644
--- a/chrome_frame/com_message_event.cc
+++ b/chrome_frame/com_message_event.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.
@@ -25,15 +25,15 @@ bool ComMessageEvent::Initialize(IOleContainer* container,
type_ = event_type;
// May remain NULL if container not IE
- ScopedComPtr<IHTMLEventObj> basic_event;
- ScopedComPtr<IHTMLDocument2> doc;
+ base::win::ScopedComPtr<IHTMLEventObj> basic_event;
+ base::win::ScopedComPtr<IHTMLDocument2> doc;
// Fetching doc may fail in non-IE containers
// and container might be NULL in some applications.
if (container)
container->QueryInterface(doc.Receive());
if (doc) {
- ScopedComPtr<IHTMLDocument4> doc4;
+ base::win::ScopedComPtr<IHTMLDocument4> doc4;
doc4.QueryFrom(doc);
DCHECK(doc4); // supported by IE5.5 and higher
if (doc4) {
« no previous file with comments | « chrome_frame/com_message_event.h ('k') | chrome_frame/com_type_info_holder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698