| Index: webkit/glue/webpreferences.cc
|
| ===================================================================
|
| --- webkit/glue/webpreferences.cc (revision 71740)
|
| +++ webkit/glue/webpreferences.cc (working copy)
|
| @@ -60,6 +60,7 @@
|
| 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),
|
| @@ -141,6 +142,9 @@
|
| // but also because it cause a possible crash in Editor::hasBidiSelection().
|
| settings->setTextDirectionSubmenuInclusionBehaviorNeverIncluded();
|
|
|
| + // Enable the web audio API if requested on the command line.
|
| + settings->setWebAudioEnabled(webaudio_enabled);
|
| +
|
| // Enable experimental WebGL support if requested on command line
|
| // and support is compiled in.
|
| bool enable_webgl =
|
|
|