| 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 668569b7043d67776ccb11ceb5b7781d159f18dd..bb0b654eda2463147017b7ce0e69f28a99a8698b 100644
|
| --- a/mojo/services/network/network_service_impl.h
|
| +++ b/mojo/services/network/network_service_impl.h
|
| @@ -8,6 +8,7 @@
|
| #include "base/compiler_specific.h"
|
| #include "mojo/public/cpp/bindings/interface_impl.h"
|
| #include "mojo/services/public/interfaces/network/network_service.mojom.h"
|
| +#include "url/gurl.h"
|
|
|
| namespace mojo {
|
| class ApplicationConnection;
|
| @@ -21,9 +22,11 @@ class NetworkServiceImpl : public InterfaceImpl<NetworkService> {
|
|
|
| // NetworkService methods:
|
| virtual void CreateURLLoader(InterfaceRequest<URLLoader> loader) OVERRIDE;
|
| + virtual void GetCookieStore(InterfaceRequest<CookieStore> store) OVERRIDE;
|
|
|
| private:
|
| NetworkContext* context_;
|
| + GURL origin_;
|
| };
|
|
|
| } // namespace mojo
|
|
|