| 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 071044920909f75247c02cbc3cd13ca391ecea19..b0ff7467516b1740d0c16ebbc7beb1e482dd03ad 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1465,7 +1465,6 @@ WebLocalFrameImpl::WebLocalFrameImpl(WebTreeScopeType scope, WebFrameClient* cli
|
| , m_selfKeepAlive(this)
|
| #endif
|
| {
|
| - setIndexedDBClientCreateFunction(IndexedDBClientImpl::create);
|
| frameCount++;
|
| }
|
|
|
| @@ -1516,6 +1515,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));
|
|
|
|
|