| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index e8861f95dae46c53e73d9a10c6d6ef7bf67293f6..10c85ff002c5ac9c709fb8cc95abe276cf516b1b 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1431,7 +1431,6 @@ WebLocalFrameImpl::WebLocalFrameImpl(WebTreeScopeType scope, WebFrameClient* cli
|
| , m_webDevToolsFrontend(0)
|
| , m_selfKeepAlive(this)
|
| {
|
| - setIndexedDBClientCreateFunction(IndexedDBClientImpl::create);
|
| frameCount++;
|
| }
|
|
|
| @@ -1476,6 +1475,7 @@ void WebLocalFrameImpl::setCoreFrame(LocalFrame* frame)
|
| provideGeolocationTo(*m_frame, m_geolocationClientProxy.get());
|
| m_geolocationClientProxy->setController(GeolocationController::from(m_frame.get()));
|
| provideMIDITo(*m_frame, MIDIClientProxy::create(m_client ? m_client->webMIDIClient() : nullptr));
|
| + provideIndexedDBClientTo(*m_frame, IndexedDBClientImpl::create());
|
| provideLocalFileSystemTo(*m_frame, LocalFileSystemClient::create());
|
| provideNavigatorContentUtilsTo(*m_frame, NavigatorContentUtilsClientImpl::create(this));
|
|
|
|
|