diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-22 21:32:10 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-22 21:32:10 +0000 |
commit | e18236b8e1bb3a02bc21e5f8f3e9dec2c3dfc785 (patch) | |
tree | d4690b93b45f731d9cc5e85f7ec48a866df17a2d /chrome/browser/profile.cc | |
parent | 95792eb13df32a536a13a5e8b712be06fb059457 (diff) | |
download | chromium_src-e18236b8e1bb3a02bc21e5f8f3e9dec2c3dfc785.zip chromium_src-e18236b8e1bb3a02bc21e5f8f3e9dec2c3dfc785.tar.gz chromium_src-e18236b8e1bb3a02bc21e5f8f3e9dec2c3dfc785.tar.bz2 |
Re-enable the --enable-extensions flag. Fix a bug where the extensions.enable pref was not being honored. Add tests.
This is intended to be submitted after:
http://codereview.chromium.org/132003
BUG=13467
TEST=Added unit tests
Review URL: http://codereview.chromium.org/132045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18962 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index 179f506..67e9810 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -478,7 +478,7 @@ void ProfileImpl::InitExtensions() { g_browser_process->file_thread()->message_loop(), script_dir); extensions_service_ = new ExtensionsService( - this, MessageLoop::current(), + this, CommandLine::ForCurrentProcess(), MessageLoop::current(), g_browser_process->file_thread()->message_loop()); extensions_service_->Init(); |