diff options
author | andybons@chromium.org <andybons@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-19 14:57:43 +0000 |
---|---|---|
committer | andybons@chromium.org <andybons@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-19 14:57:43 +0000 |
commit | e685fc4178818c026f1498461edb3f2bfeff5722 (patch) | |
tree | f22c6b9ea815d822e0bb60d4c83208547b935401 /chrome/browser/profile.cc | |
parent | 6c077af5c79a85d64e4b4363b8d0e29bb16543db (diff) | |
download | chromium_src-e685fc4178818c026f1498461edb3f2bfeff5722.zip chromium_src-e685fc4178818c026f1498461edb3f2bfeff5722.tar.gz chromium_src-e685fc4178818c026f1498461edb3f2bfeff5722.tar.bz2 |
Revert 42061 - Enable tabbed bookmark manager by default due to browser_tests and chrome frame breaking.
BUG=4890
TEST=None
Review URL: http://codereview.chromium.org/1139001
TBR=arv@chromium.org
Review URL: http://codereview.chromium.org/1146004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42103 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index 802ad29..2414602 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -676,8 +676,8 @@ void ProfileImpl::InitExtensions() { true); // Register the bookmark manager extension. - if (!CommandLine::ForCurrentProcess()->HasSwitch( - switches::kDisableTabbedBookmarkManager)) { + if (CommandLine::ForCurrentProcess()->HasSwitch( + switches::kEnableTabbedBookmarkManager)) { FilePath bookmark_manager_path; if (PathService::Get(chrome::DIR_BOOKMARK_MANAGER, &bookmark_manager_path)) { |