| Index: mojo/services/network/network_service_impl.h
|
| diff --git a/mojo/services/network/network_service_impl.h b/mojo/services/network/network_service_impl.h
|
| index 3a7ac236a9e74a8bd6bf1f79e3e152c27f19c6c9..360d9f05841bda50734ed2147f5bceef9e99d2eb 100644
|
| --- a/mojo/services/network/network_service_impl.h
|
| +++ b/mojo/services/network/network_service_impl.h
|
| @@ -8,16 +8,17 @@
|
| #include "base/compiler_specific.h"
|
| #include "mojo/common/weak_interface_ptr_set.h"
|
| #include "mojo/services/network/public/interfaces/network_service.mojom.h"
|
| -#include "third_party/mojo/src/mojo/public/cpp/bindings/interface_impl.h"
|
| +#include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h"
|
| #include "url/gurl.h"
|
|
|
| namespace mojo {
|
| class ApplicationConnection;
|
| class NetworkContext;
|
|
|
| -class NetworkServiceImpl : public InterfaceImpl<NetworkService> {
|
| +class NetworkServiceImpl : public NetworkService {
|
| public:
|
| - NetworkServiceImpl(ApplicationConnection* connection,
|
| + NetworkServiceImpl(InterfaceRequest<NetworkService> request,
|
| + ApplicationConnection* connection,
|
| NetworkContext* context);
|
| ~NetworkServiceImpl() override;
|
|
|
| @@ -45,6 +46,7 @@ class NetworkServiceImpl : public InterfaceImpl<NetworkService> {
|
| InterfaceRequest<HostResolver> host_resolver) override;
|
|
|
| private:
|
| + StrongBinding<NetworkService> binding_;
|
| NetworkContext* context_;
|
| GURL origin_;
|
| WeakInterfacePtrSet<URLLoaderInterceptorFactory>
|
|
|