diff options
Diffstat (limited to 'webkit/port/bindings')
-rw-r--r-- | webkit/port/bindings/v8/v8_proxy.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/webkit/port/bindings/v8/v8_proxy.cpp b/webkit/port/bindings/v8/v8_proxy.cpp index 26d727b..5f80a2d 100644 --- a/webkit/port/bindings/v8/v8_proxy.cpp +++ b/webkit/port/bindings/v8/v8_proxy.cpp @@ -1612,6 +1612,11 @@ v8::Persistent<v8::FunctionTemplate> V8Proxy::GetTemplate( case V8ClassIndex::DOMPARSER: desc->SetCallHandler(USE_CALLBACK(DOMParserConstructor)); break; +#if ENABLE(VIDEO) + case V8ClassIndex::HTMLAUDIOELEMENT: + desc->SetCallHandler(USE_CALLBACK(HTMLAudioElementConstructor)); + break; +#endif case V8ClassIndex::HTMLIMAGEELEMENT: desc->SetCallHandler(USE_CALLBACK(HTMLImageElementConstructor)); break; |