Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: mojo/services/network/network_service_impl.h

Issue 613683006: Add TCP socket mojo interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement network service functions Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/public/cpp/bindings/interface_impl.h" 9 #include "mojo/public/cpp/bindings/interface_impl.h"
10 #include "mojo/services/public/interfaces/network/network_service.mojom.h" 10 #include "mojo/services/public/interfaces/network/network_service.mojom.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 virtual ~NetworkServiceImpl(); 21 virtual ~NetworkServiceImpl();
22 22
23 // NetworkService methods: 23 // NetworkService methods:
24 virtual void CreateURLLoader(InterfaceRequest<URLLoader> loader) OVERRIDE; 24 virtual void CreateURLLoader(InterfaceRequest<URLLoader> loader) override;
25 virtual void GetCookieStore(InterfaceRequest<CookieStore> store) OVERRIDE; 25 virtual void GetCookieStore(InterfaceRequest<CookieStore> store) override;
26 virtual void CreateWebSocket(InterfaceRequest<WebSocket> socket) OVERRIDE; 26 virtual void CreateWebSocket(InterfaceRequest<WebSocket> socket) override;
27 virtual void CreateTCPBoundSocket(
28 NetAddressPtr local_address,
29 InterfaceRequest<TCPBoundSocket> bound_socket,
30 const Callback<void(NetworkErrorPtr, NetAddressPtr)>& callback) override;
31 virtual void CreateTCPClientSocket(
32 NetAddressPtr remote_address,
33 ScopedDataPipeConsumerHandle send_stream,
34 ScopedDataPipeProducerHandle receive_stream,
35 InterfaceRequest<TCPClientSocket> client_socket,
36 const Callback<void(NetworkErrorPtr, NetAddressPtr)>& callback) override;
27 37
28 private: 38 private:
29 NetworkContext* context_; 39 NetworkContext* context_;
30 GURL origin_; 40 GURL origin_;
31 }; 41 };
32 42
33 } // namespace mojo 43 } // namespace mojo
34 44
35 #endif // MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_ 45 #endif // MOJO_SERVICES_NETWORK_NETWORK_SERVICE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698