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

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

Issue 2787843003: Add Accessibility Object Model to content features, and add a browser test. (Closed)
Patch Set: Update webexposed Created 3 years, 8 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
Index: third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
diff --git a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
index db31685ed974185f1ac5d4685bc92c5bfc4b6001..9faa2c374bb6e117531d7815fa6891f974495c2e 100644
--- a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
+++ b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
@@ -64,6 +64,10 @@ void WebRuntimeFeatures::enableAccelerated2dCanvas(bool enable) {
RuntimeEnabledFeatures::setAccelerated2dCanvasEnabled(enable);
}
+void WebRuntimeFeatures::enableAccessibilityObjectModel(bool enable) {
+ RuntimeEnabledFeatures::setAccessibilityObjectModelEnabled(enable);
+}
+
void WebRuntimeFeatures::enableAudioOutputDevices(bool enable) {
RuntimeEnabledFeatures::setAudioOutputDevicesEnabled(enable);
}

Powered by Google App Engine
This is Rietveld 408576698