| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index 286fc9a7e8f6a10d129e3e9ff24f70275aafdb9f..0c2032423a036cfb8806681bb68ec4b43adfa7f9 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -422,6 +422,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
|
| , m_geolocationClientProxy(adoptPtr(new GeolocationClientProxy(client ? client->geolocationClient() : 0)))
|
| , m_emulatedTextZoomFactor(1)
|
| , m_userMediaClientImpl(this)
|
| + , m_midiClientImpl(this)
|
| #if ENABLE(NAVIGATOR_CONTENT_UTILS)
|
| , m_navigatorContentUtilsClient(NavigatorContentUtilsClientImpl::create(this))
|
| #endif
|
| @@ -443,6 +444,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
|
|
|
| m_page = adoptPtr(new Page(pageClients));
|
| provideUserMediaTo(m_page.get(), &m_userMediaClientImpl);
|
| + provideMIDITo(m_page.get(), &m_midiClientImpl);
|
| #if ENABLE(INPUT_SPEECH)
|
| provideSpeechInputTo(m_page.get(), m_speechInputClient.get());
|
| #endif
|
|
|