| Index: chrome/browser/extensions/extension_service_unittest.cc
|
| diff --git a/chrome/browser/extensions/extension_service_unittest.cc b/chrome/browser/extensions/extension_service_unittest.cc
|
| index c7a2830ee6410942e3ae7e3a9061e75e21270f71..78471a461f089a2212f4785490a10ef792f553c3 100644
|
| --- a/chrome/browser/extensions/extension_service_unittest.cc
|
| +++ b/chrome/browser/extensions/extension_service_unittest.cc
|
| @@ -54,12 +54,12 @@
|
| #include "chrome/common/url_constants.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "content/browser/appcache/chrome_appcache_service.h"
|
| -#include "content/browser/browser_thread.h"
|
| #include "content/browser/file_system/browser_file_system_helper.h"
|
| #include "content/browser/in_process_webkit/dom_storage_context.h"
|
| #include "content/browser/in_process_webkit/webkit_context.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/notification_service.h"
|
| +#include "content/test/test_browser_thread.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "net/base/cookie_monster.h"
|
| #include "net/base/cookie_options.h"
|
| @@ -3504,8 +3504,8 @@ TEST(ExtensionServiceTestSimple, Enabledness) {
|
| ExtensionsReadyRecorder recorder;
|
| scoped_ptr<TestingProfile> profile(new TestingProfile());
|
| MessageLoop loop;
|
| - BrowserThread ui_thread(BrowserThread::UI, &loop);
|
| - BrowserThread file_thread(BrowserThread::FILE, &loop);
|
| + content::TestBrowserThread ui_thread(BrowserThread::UI, &loop);
|
| + content::TestBrowserThread file_thread(BrowserThread::FILE, &loop);
|
| scoped_ptr<CommandLine> command_line;
|
| FilePath install_dir = profile->GetPath()
|
| .AppendASCII(ExtensionService::kInstallDirectoryName);
|
|
|