| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index c60757b86f7d6b1a778b03c8b206ae65457884ed..8f2dbaa2b415ecbcac28996b994eb115cb592829 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -82,6 +82,7 @@
|
| #include "core/rendering/compositing/RenderLayerCompositor.h"
|
| #include "modules/device_orientation/DeviceOrientationInspectorAgent.h"
|
| #include "modules/encryptedmedia/MediaKeysController.h"
|
| +#include "modules/filesystem/InspectorFileSystemAgent.h"
|
| #include "modules/indexeddb/InspectorIndexedDBAgent.h"
|
| #include "modules/push_messaging/PushController.h"
|
| #include "platform/ContextMenu.h"
|
| @@ -131,7 +132,6 @@
|
| #include "web/FullscreenController.h"
|
| #include "web/GraphicsLayerFactoryChromium.h"
|
| #include "web/LinkHighlight.h"
|
| -#include "web/LocalFileSystemClient.h"
|
| #include "web/PopupContainer.h"
|
| #include "web/PrerendererClientImpl.h"
|
| #include "web/SpeechRecognitionClientProxy.h"
|
| @@ -414,7 +414,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
|
| provideContextFeaturesTo(*m_page, ContextFeaturesClientImpl::create());
|
| DeviceOrientationInspectorAgent::provideTo(*m_page);
|
|
|
| - provideLocalFileSystemTo(*m_page, LocalFileSystemClient::create());
|
| + m_page->inspectorController().registerModuleAgent(InspectorFileSystemAgent::create(m_page.get()));
|
| provideDatabaseClientTo(*m_page, DatabaseClientImpl::create());
|
| InspectorIndexedDBAgent::provideTo(m_page.get());
|
| provideStorageQuotaClientTo(*m_page, StorageQuotaClientImpl::create());
|
|
|