| Index: chrome_frame/test/net/fake_external_tab.cc
|
| diff --git a/chrome_frame/test/net/fake_external_tab.cc b/chrome_frame/test/net/fake_external_tab.cc
|
| index 40bee36e853f754ee729070f4fd3f9df19700ac3..261f783d92d2bdced4e7b791df835388e205fdfc 100644
|
| --- a/chrome_frame/test/net/fake_external_tab.cc
|
| +++ b/chrome_frame/test/net/fake_external_tab.cc
|
| @@ -9,7 +9,6 @@
|
| #include <exdisp.h>
|
|
|
| #include "app/app_paths.h"
|
| -#include "app/win/scoped_com_initializer.h"
|
| #include "base/command_line.h"
|
| #include "base/debug/debugger.h"
|
| #include "base/file_util.h"
|
| @@ -22,6 +21,7 @@
|
| #include "base/system_monitor/system_monitor.h"
|
| #include "base/test/test_timeouts.h"
|
| #include "base/threading/platform_thread.h"
|
| +#include "base/win/scoped_com_initializer.h"
|
| #include "base/win/scoped_comptr.h"
|
| #include "base/win/scoped_handle.h"
|
| #include "chrome/browser/automation/automation_provider_list.h"
|
| @@ -281,7 +281,7 @@ void CFUrlRequestUnittestRunner::StartChromeFrameInHostBrowser() {
|
| if (!ShouldLaunchBrowser())
|
| return;
|
|
|
| - app::win::ScopedCOMInitializer com;
|
| + base::win::ScopedCOMInitializer com;
|
| chrome_frame_test::CloseAllIEWindows();
|
|
|
| test_http_server_.reset(new test_server::SimpleWebServer(kTestServerPort));
|
| @@ -303,7 +303,7 @@ void CFUrlRequestUnittestRunner::StartChromeFrameInHostBrowser() {
|
|
|
| void CFUrlRequestUnittestRunner::ShutDownHostBrowser() {
|
| if (ShouldLaunchBrowser()) {
|
| - app::win::ScopedCOMInitializer com;
|
| + base::win::ScopedCOMInitializer com;
|
| chrome_frame_test::CloseAllIEWindows();
|
| }
|
| }
|
|
|