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

Unified Diff: third_party/WebKit/Source/web/WebSettingsImpl.cpp

Issue 2886943007: Introduce NavigatorWebDriver interface
Patch Set: wip: need more tests Created 3 years, 7 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 | « third_party/WebKit/Source/web/WebSettingsImpl.h ('k') | third_party/WebKit/public/web/WebSettings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebSettingsImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebSettingsImpl.cpp b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
index 7204a4b8b38d83fe010127de3c424e5c7e6711e4..b073fa7a10b2988d4f89b0e376cd65c91ccde195 100644
--- a/third_party/WebKit/Source/web/WebSettingsImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
@@ -731,6 +731,14 @@ void WebSettingsImpl::SetMediaControlsEnabled(bool enabled) {
settings_->SetMediaControlsEnabled(enabled);
}
+void WebSettingsImpl::SetAutomationControlled(bool enabled) {
+ settings_->SetAutomationControlled(enabled);
+}
+
+void WebSettingsImpl::SetHeadless(bool enabled) {
+ settings_->SetHeadless(enabled);
+}
+
void WebSettingsImpl::SetDoNotUpdateSelectionOnMutatingSelectionRange(
bool enabled) {
settings_->SetDoNotUpdateSelectionOnMutatingSelectionRange(enabled);
« no previous file with comments | « third_party/WebKit/Source/web/WebSettingsImpl.h ('k') | third_party/WebKit/public/web/WebSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698