| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_ | 5 #ifndef MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_ |
| 6 #define MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_ | 6 #define MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "mojo/services/network/public/interfaces/network_service.mojom.h" | 9 #include "mojo/services/network/public/interfaces/network_service.mojom.h" |
| 10 #include "third_party/mojo/src/mojo/public/cpp/bindings/interface_impl.h" | 10 #include "third_party/mojo/src/mojo/public/cpp/bindings/interface_impl.h" |
| 11 #include "url/gurl.h" | 11 #include "url/gurl.h" |
| 12 | 12 |
| 13 namespace mojo { | 13 namespace mojo { |
| 14 class ApplicationConnection; | 14 class ApplicationConnection; |
| 15 class NetworkContext; | 15 class NetworkContext; |
| 16 | 16 |
| 17 class NetworkServiceImpl : public InterfaceImpl<NetworkService> { | 17 class NetworkServiceImpl : public InterfaceImpl<NetworkService> { |
| 18 public: | 18 public: |
| 19 NetworkServiceImpl(ApplicationConnection* connection, | 19 NetworkServiceImpl(ApplicationConnection* connection, |
| 20 NetworkContext* context); | 20 NetworkContext* context); |
| 21 ~NetworkServiceImpl() override; | 21 ~NetworkServiceImpl() override; |
| 22 | 22 |
| 23 // NetworkService methods: | 23 // NetworkService methods: |
| 24 void CreateURLLoader(InterfaceRequest<URLLoader> loader) override; | 24 void CreateURLLoader(InterfaceRequest<URLLoader> loader) override; |
| 25 void GetCookieStore(InterfaceRequest<CookieStore> store) override; | 25 void GetCookieStore(InterfaceRequest<CookieStore> store) override; |
| 26 void CreateWebSocket(InterfaceRequest<WebSocket> socket) override; | 26 void CreateWebSocket(InterfaceRequest<WebSocket> socket) override; |
| 27 void CreateTCPBoundSocket( | 27 void CreateTCPBoundSocket( |
| 28 NetAddressPtr local_address, | 28 NetAddressPtr local_address, |
| 29 InterfaceRequest<TCPBoundSocket> bound_socket, | 29 InterfaceRequest<TCPBoundSocket> bound_socket, |
| 30 const Callback<void(NetworkErrorPtr, NetAddressPtr)>& callback) override; | 30 const CreateTCPBoundSocketCallback& callback) override; |
| 31 void CreateTCPConnectedSocket( | 31 void CreateTCPConnectedSocket( |
| 32 NetAddressPtr remote_address, | 32 NetAddressPtr remote_address, |
| 33 ScopedDataPipeConsumerHandle send_stream, | 33 ScopedDataPipeConsumerHandle send_stream, |
| 34 ScopedDataPipeProducerHandle receive_stream, | 34 ScopedDataPipeProducerHandle receive_stream, |
| 35 InterfaceRequest<TCPConnectedSocket> client_socket, | 35 InterfaceRequest<TCPConnectedSocket> client_socket, |
| 36 const Callback<void(NetworkErrorPtr, NetAddressPtr)>& callback) override; | 36 const CreateTCPConnectedSocketCallback& callback) override; |
| 37 void CreateUDPSocket(InterfaceRequest<UDPSocket> socket) override; | 37 void CreateUDPSocket(InterfaceRequest<UDPSocket> socket) override; |
| 38 void CreateHttpServer(NetAddressPtr local_address, |
| 39 HttpServerDelegatePtr delegate, |
| 40 const CreateHttpServerCallback& callback) override; |
| 38 | 41 |
| 39 private: | 42 private: |
| 40 NetworkContext* context_; | 43 NetworkContext* context_; |
| 41 GURL origin_; | 44 GURL origin_; |
| 42 }; | 45 }; |
| 43 | 46 |
| 44 } // namespace mojo | 47 } // namespace mojo |
| 45 | 48 |
| 46 #endif // MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_ | 49 #endif // MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_ |
| OLD | NEW |