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/common | |
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/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 1835ea6..4c321bb 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -486,9 +486,9 @@ const wchar_t kNewTabPage[] = L"new-tab-page"; // Switches back to the old new tab page. const wchar_t kOldNewTabPage[] = L"old-new-tab-page"; -// Disables the backend service for web resources, used in the new tab page for +// Enables the backend service for web resources, used in the new tab page for // loading tips and recommendations from a JSON feed. -const wchar_t kDisableWebResources[] = L"disable-web-resources"; +const wchar_t kEnableWebResources[] = L"enable-web-resources"; // Disables the default browser check. Useful for UI/browser tests where we want // to avoid having the default browser info-bar displayed. diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 87d4cd6..6b8e4387 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -181,7 +181,7 @@ extern const wchar_t kForceFieldTestNameAndValue[]; extern const wchar_t kNewTabPage[]; extern const wchar_t kOldNewTabPage[]; -extern const wchar_t kDisableWebResources[]; +extern const wchar_t kEnableWebResources[]; extern const wchar_t kEnableBenchmarking[]; |