| 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 597f1565f4c0c2a081312eb3e4a61ad2f8671538..9b17575f5f4ec60a0eddcbeed48c4fa70520c8d0 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -157,6 +157,7 @@
|
| #include "core/timing/DOMWindowPerformance.h"
|
| #include "core/timing/Performance.h"
|
| #include "modules/app_banner/AppBannerController.h"
|
| +#include "modules/installation/InstallationServiceImpl.h"
|
| #include "modules/screen_orientation/ScreenOrientationControllerImpl.h"
|
| #include "platform/ScriptForbiddenScope.h"
|
| #include "platform/UserGestureIndicator.h"
|
| @@ -1575,6 +1576,9 @@ void WebLocalFrameImpl::initializeCoreFrame(FrameHost* host,
|
| // frame()->document().
|
| frame()->interfaceRegistry()->addInterface(WTF::bind(
|
| &AppBannerController::bindMojoRequest, wrapWeakPersistent(frame())));
|
| +
|
| + frame()->interfaceRegistry()->addInterface(WTF::bind(
|
| + &InstallationServiceImpl::create, wrapWeakPersistent(frame())));
|
| }
|
| }
|
|
|
|
|