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

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: Rebase Created 3 years, 9 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 3364ac1925fc01c2ec74c8b900dd2143856e1e50..eb347089ff718cc9661dd1d177a7aac098dfe73b 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