diff options
Diffstat (limited to 'webkit/glue/webpreferences.cc')
-rw-r--r-- | webkit/glue/webpreferences.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/webkit/glue/webpreferences.cc b/webkit/glue/webpreferences.cc index cc4efef..de2fc07 100644 --- a/webkit/glue/webpreferences.cc +++ b/webkit/glue/webpreferences.cc @@ -60,7 +60,6 @@ WebPreferences::WebPreferences() frame_flattening_enabled(false), allow_universal_access_from_file_urls(false), allow_file_access_from_file_urls(false), - webaudio_enabled(false), experimental_webgl_enabled(false), show_composited_layer_borders(false), accelerated_compositing_enabled(false), @@ -143,11 +142,6 @@ void WebPreferences::Apply(WebView* web_view) const { // but also because it cause a possible crash in Editor::hasBidiSelection(). settings->setTextDirectionSubmenuInclusionBehaviorNeverIncluded(); -#ifdef HAS_WEBAUDIO_FEATURE_ENABLE - // Enable the web audio API if requested on the command line. - settings->setWebAudioEnabled(webaudio_enabled); -#endif // HAS_WEBAUDIO_FEATURE_ENABLE - // Enable experimental WebGL support if requested on command line // and support is compiled in. bool enable_webgl = |