Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: chrome/test/webdriver/webdriver_automation.cc

Issue 10832368: Revert 152037 (looks like the change was innocent) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/webdriver/test/chromedriver_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_automation.cc
===================================================================
--- chrome/test/webdriver/webdriver_automation.cc (revision 152089)
+++ chrome/test/webdriver/webdriver_automation.cc (working copy)
@@ -364,8 +364,13 @@
command.AppendSwitch(switches::kFullMemoryCrashReport);
command.AppendSwitch(switches::kNoDefaultBrowserCheck);
command.AppendSwitch(switches::kNoFirstRun);
+ command.AppendSwitch(switches::kDisableBackgroundNetworking);
+ command.AppendSwitch(switches::kDisableSync);
+ command.AppendSwitch(switches::kDisableTranslate);
command.AppendSwitch(switches::kDisableWebResources);
command.AppendSwitch(switches::kSbDisableAutoUpdate);
+ command.AppendSwitch(switches::kSbDisableDownloadProtection);
+ command.AppendSwitch(switches::kDisableClientSidePhishingDetection);
command.AppendSwitch(switches::kDisableComponentUpdate);
command.AppendSwitch(switches::kDisableDefaultApps);
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
@@ -379,7 +384,7 @@
if (options.ignore_certificate_errors)
command.AppendSwitch(switches::kIgnoreCertificateErrors);
if (options.user_data_dir.empty())
- command.AppendSwitchASCII(switches::kHomePage, chrome::kAboutBlankURL);
+ command.AppendArg(chrome::kAboutBlankURL);
command.AppendArguments(options.command, true /* include_program */);
« no previous file with comments | « chrome/test/webdriver/test/chromedriver_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698