diff options
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index cdb7c00..2ca2342 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -477,7 +477,10 @@ void ProfileImpl::InitExtensions() { ExtensionErrorReporter::Init(true); // allow noisy errors. user_script_master_ = new UserScriptMaster( g_browser_process->file_thread()->message_loop(), script_dir); - extensions_service_ = new ExtensionsService(this, user_script_master_.get()); + extensions_service_ = new ExtensionsService( + this, MessageLoop::current(), + g_browser_process->file_thread()->message_loop(), + std::string()); // Use default registry path // If we have extensions, the extension service will kick off the first scan // after extensions are loaded. Otherwise, we need to do that now. |