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

Unified Diff: chrome_frame/test/mock_ie_event_sink_test.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/test/mock_ie_event_sink_test.h ('k') | chrome_frame/test/navigation_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/mock_ie_event_sink_test.cc
diff --git a/chrome_frame/test/mock_ie_event_sink_test.cc b/chrome_frame/test/mock_ie_event_sink_test.cc
index 99ccfc4206993adf1a7e6fa9662eb5c7ee925a1d..8eddc4cc90b3800b447be60c229dd2f7354daf25 100644
--- a/chrome_frame/test/mock_ie_event_sink_test.cc
+++ b/chrome_frame/test/mock_ie_event_sink_test.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.
@@ -6,8 +6,8 @@
#include <sstream>
-#include "base/win/scoped_variant.h"
#include "base/utf_string_conversions.h"
+#include "base/win/scoped_variant.h"
#include "chrome_frame/test/mock_ie_event_sink_actions.h"
// Needed for CreateFunctor.
@@ -157,10 +157,10 @@ void MockIEEventSink::ExpectAnyNavigations() {
}
void MockIEEventSink::ExpectDocumentReadystate(int ready_state) {
- ScopedComPtr<IWebBrowser2> browser(event_sink_->web_browser2());
+ base::win::ScopedComPtr<IWebBrowser2> browser(event_sink_->web_browser2());
EXPECT_TRUE(browser != NULL);
if (browser) {
- ScopedComPtr<IDispatch> document;
+ base::win::ScopedComPtr<IDispatch> document;
browser->get_Document(document.Receive());
EXPECT_TRUE(document != NULL);
if (document) {
« no previous file with comments | « chrome_frame/test/mock_ie_event_sink_test.h ('k') | chrome_frame/test/navigation_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698