diff options
author | arv@google.com <arv@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-25 06:54:43 +0000 |
---|---|---|
committer | arv@google.com <arv@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-25 06:54:43 +0000 |
commit | 1cf38fa7f9493a4e84a42e05abfc812e19220fea (patch) | |
tree | cf767a1a8bc0bd49b35529fa2c2cc7f75900e141 /chrome/browser/browser_main.cc | |
parent | fc23ec8dd5f9359914ba6ab1b8bd00c494f547c9 (diff) | |
download | chromium_src-1cf38fa7f9493a4e84a42e05abfc812e19220fea.zip chromium_src-1cf38fa7f9493a4e84a42e05abfc812e19220fea.tar.gz chromium_src-1cf38fa7f9493a4e84a42e05abfc812e19220fea.tar.bz2 |
Disable the tips service by default.
Update the UI to not say tips or recommendations.
BUG=None
TEST=Starting chrome should not show any tips byt default
Review URL: http://codereview.chromium.org/160138
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21615 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_main.cc')
-rw-r--r-- | chrome/browser/browser_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc index 4b938c6..0ffe724 100644 --- a/chrome/browser/browser_main.cc +++ b/chrome/browser/browser_main.cc @@ -745,7 +745,7 @@ int BrowserMain(const MainFunctionParams& parameters) { profile->InitExtensions(); // Start up the web resource service. This starts loading data after a // short delay so as not to interfere with startup time. - if (!parsed_command_line.HasSwitch(switches::kDisableWebResources)) + if (parsed_command_line.HasSwitch(switches::kEnableWebResources)) profile->InitWebResources(); int result_code = ResultCodes::NORMAL_EXIT; |