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

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

Issue 10828135: Allow popups, mouselock, and https media-stream content by default. (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/webdriver_automation.h ('k') | chrome/test/webdriver/webdriver_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_automation.cc
diff --git a/chrome/test/webdriver/webdriver_automation.cc b/chrome/test/webdriver/webdriver_automation.cc
index 20fdfae4e199c1aef4e9f297fc2b6ea813ddbc8a..83601be78f37698a91548919b2d1be1e59d7e489 100644
--- a/chrome/test/webdriver/webdriver_automation.cc
+++ b/chrome/test/webdriver/webdriver_automation.cc
@@ -337,8 +337,7 @@ namespace webdriver {
Automation::BrowserOptions::BrowserOptions()
: command(CommandLine::NO_PROGRAM),
detach_process(false),
- ignore_certificate_errors(false),
- disable_popup_blocking(false) {}
+ ignore_certificate_errors(false) {}
Automation::BrowserOptions::~BrowserOptions() {}
@@ -367,8 +366,6 @@ void Automation::Init(
command.AppendSwitch(switches::kAutomationReinitializeOnChannelError);
if (options.ignore_certificate_errors)
command.AppendSwitch(switches::kIgnoreCertificateErrors);
- if (options.disable_popup_blocking)
- command.AppendSwitch(switches::kDisablePopupBlocking);
if (options.user_data_dir.empty())
command.AppendSwitchASCII(switches::kHomePage, chrome::kAboutBlankURL);
« no previous file with comments | « chrome/test/webdriver/webdriver_automation.h ('k') | chrome/test/webdriver/webdriver_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698