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 97bbe6ac434080a8f8bffc1329c265dd5d967255..a07e69cc146e5c7fc1d644d086495ba1e353d092 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()))); |
} |
} |