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

Unified Diff: ceee/ie/broker/cookie_api_module_unittest.cc

Issue 6063001: ceee: Include base/win/scope_comptr.h instead of base/scoped_comptr_win.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/ceee
Patch Set: fix chrome_frame Created 10 years 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 | « ceee/ie/broker/cookie_api_module.cc ('k') | ceee/ie/broker/tab_api_module_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/broker/cookie_api_module_unittest.cc
diff --git a/ceee/ie/broker/cookie_api_module_unittest.cc b/ceee/ie/broker/cookie_api_module_unittest.cc
index a66f3e877bd4c7fbf0598ee5d8f3523aed7febdc..8ca0c3b8a1342282e31491ef9f81bb88861bae2e 100644
--- a/ceee/ie/broker/cookie_api_module_unittest.cc
+++ b/ceee/ie/broker/cookie_api_module_unittest.cc
@@ -8,8 +8,8 @@
// incompatibility with atlwin.h.
#include "ceee/testing/utils/mock_win32.h" // NOLINT
-#include "base/scoped_comptr_win.h"
#include "base/string_util.h"
+#include "base/win/scoped_comptr.h"
#include "ceee/common/process_utils_win.h"
#include "ceee/ie/broker/api_dispatcher.h"
#include "ceee/ie/broker/api_module_constants.h"
@@ -364,7 +364,7 @@ TEST_F(CookieApiTests, GetCookieInfo) {
NULL));
// Test executor.
testing::MockCookieExecutor* mock_cookie_executor;
- ScopedComPtr<ICeeeCookieExecutor> mock_cookie_executor_keeper;
+ base::win::ScopedComPtr<ICeeeCookieExecutor> mock_cookie_executor_keeper;
EXPECT_HRESULT_SUCCEEDED(testing::MockCookieExecutor::CreateInitialized(
&mock_cookie_executor, mock_cookie_executor_keeper.Receive()));
EXPECT_CALL(result.mock_api_dispatcher_,
@@ -542,7 +542,7 @@ TEST_F(CookieApiTests, GetTabListForWindow) {
// Test executor.
testing::MockWindowExecutor* mock_window_executor;
- ScopedComPtr<ICeeeWindowExecutor> mock_window_executor_keeper;
+ base::win::ScopedComPtr<ICeeeWindowExecutor> mock_window_executor_keeper;
EXPECT_HRESULT_SUCCEEDED(testing::MockWindowExecutor::CreateInitialized(
&mock_window_executor, mock_window_executor_keeper.Receive()));
EXPECT_CALL(result.mock_api_dispatcher_,
@@ -653,7 +653,7 @@ TEST_F(CookieApiTests, GetTabProtectedMode) {
// Test executor.
testing::MockTabExecutor* mock_tab_executor;
- ScopedComPtr<ICeeeTabExecutor> mock_tab_executor_keeper;
+ base::win::ScopedComPtr<ICeeeTabExecutor> mock_tab_executor_keeper;
EXPECT_HRESULT_SUCCEEDED(testing::MockTabExecutor::CreateInitialized(
&mock_tab_executor, mock_tab_executor_keeper.Receive()));
EXPECT_CALL(result.mock_api_dispatcher_,
« no previous file with comments | « ceee/ie/broker/cookie_api_module.cc ('k') | ceee/ie/broker/tab_api_module_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698