| Index: Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
|
| index 0afc8a1b7c52df3c1394f37327c510ec2928e0ed..d37c695d2428afc64562c0f544a874e1a4479e53 100644
|
| --- a/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/Source/web/WebLocalFrameImpl.cpp
|
| @@ -158,6 +158,7 @@
|
| #include "modules/permissions/PermissionController.h"
|
| #include "modules/presentation/PresentationController.h"
|
| #include "modules/push_messaging/PushController.h"
|
| +#include "modules/quota/DurableStorageController.h"
|
| #include "modules/screen_orientation/ScreenOrientationController.h"
|
| #include "modules/vr/VRController.h"
|
| #include "platform/ScriptForbiddenScope.h"
|
| @@ -1708,6 +1709,8 @@ void WebLocalFrameImpl::setCoreFrame(PassRefPtrWillBeRawPtr<LocalFrame> frame)
|
| provideMIDITo(*m_frame, MIDIClientProxy::create(m_client ? m_client->webMIDIClient() : nullptr));
|
| provideLocalFileSystemTo(*m_frame, LocalFileSystemClient::create());
|
|
|
| + DurableStorageController::provideTo(*m_frame, m_client ? m_client->durableStorageDispatcher() : nullptr);
|
| +
|
| if (RuntimeEnabledFeatures::screenOrientationEnabled())
|
| ScreenOrientationController::provideTo(*m_frame, m_client ? m_client->webScreenOrientationClient() : nullptr);
|
| if (RuntimeEnabledFeatures::presentationEnabled())
|
|
|