summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorarv@google.com <arv@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-25 06:54:43 +0000
committerarv@google.com <arv@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-25 06:54:43 +0000
commit1cf38fa7f9493a4e84a42e05abfc812e19220fea (patch)
treecf767a1a8bc0bd49b35529fa2c2cc7f75900e141 /chrome/test
parentfc23ec8dd5f9359914ba6ab1b8bd00c494f547c9 (diff)
downloadchromium_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/test')
-rw-r--r--chrome/test/in_process_browser_test.cc5
-rw-r--r--chrome/test/ui/ui_test.cc3
2 files changed, 6 insertions, 2 deletions
diff --git a/chrome/test/in_process_browser_test.cc b/chrome/test/in_process_browser_test.cc
index 7544b49..36deb0b 100644
--- a/chrome/test/in_process_browser_test.cc
+++ b/chrome/test/in_process_browser_test.cc
@@ -102,7 +102,10 @@ void InProcessBrowserTest::SetUp() {
if (single_process_)
command_line->AppendSwitch(switches::kSingleProcess);
- command_line->AppendSwitch(switches::kDisableWebResources);
+ // TODO(arv): Reenable once kEnableWebResources is changed back to
+ // kDisableWebResources
+ // http://crbug.com/17725
+ // command_line->AppendSwitch(switches::kEnableWebResources);
command_line->AppendSwitchWithValue(switches::kUserDataDir, user_data_dir);
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc
index 447464f..fd5915b 100644
--- a/chrome/test/ui/ui_test.cc
+++ b/chrome/test/ui/ui_test.cc
@@ -378,7 +378,8 @@ void UITest::LaunchBrowser(const CommandLine& arguments, bool clear_profile) {
command_line.AppendSwitchWithValue(switches::kHomePage,
homepage_);
// Don't try to fetch web resources during UI testing.
- command_line.AppendSwitch(switches::kDisableWebResources);
+ // Reenable once kEnableWebResources is changed back to kDisableWebResources
+ // command_line.AppendSwitch(switches::kEnableWebResources);
#if defined(OS_POSIX)
const char* alternative_userdir = getenv("CHROME_UI_TESTS_USER_DATA_DIR");
#else