| Index: chrome/browser/extensions/user_script_master_unittest.cc
|
| diff --git a/chrome/browser/extensions/user_script_master_unittest.cc b/chrome/browser/extensions/user_script_master_unittest.cc
|
| index ccc2c12cf8453698a4ba1a9e9ed172b8b084f527..8f508265a5a19e15d88bea9800323ea60ff130bf 100644
|
| --- a/chrome/browser/extensions/user_script_master_unittest.cc
|
| +++ b/chrome/browser/extensions/user_script_master_unittest.cc
|
| @@ -13,7 +13,9 @@
|
| #include "base/path_service.h"
|
| #include "base/strings/string_util.h"
|
| #include "chrome/browser/chrome_notification_types.h"
|
| +#include "chrome/browser/extensions/shared_user_script_master.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| +#include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/test/test_browser_thread.h"
|
| @@ -90,7 +92,7 @@ class UserScriptMasterTest : public testing::Test,
|
| // Test that we get notified even when there are no scripts.
|
| TEST_F(UserScriptMasterTest, NoScripts) {
|
| TestingProfile profile;
|
| - UserScriptMaster master(&profile);
|
| + SharedUserScriptMaster master(&profile);
|
| master.StartLoad();
|
| message_loop_.PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
|
| message_loop_.Run();
|
|
|