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

Unified Diff: mojo/services/network/udp_socket_impl.h

Issue 1873463003: Remove mojo network service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/network/test_manifest.json ('k') | mojo/services/network/udp_socket_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/network/udp_socket_impl.h
diff --git a/mojo/services/network/udp_socket_impl.h b/mojo/services/network/udp_socket_impl.h
deleted file mode 100644
index 6ea5770c62d1875689653e65b406ab83bb91e7ee..0000000000000000000000000000000000000000
--- a/mojo/services/network/udp_socket_impl.h
+++ /dev/null
@@ -1,133 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MOJO_SERVICES_NETWORK_UDP_SOCKET_IMPL_H_
-#define MOJO_SERVICES_NETWORK_UDP_SOCKET_IMPL_H_
-
-#include <stddef.h>
-#include <stdint.h>
-
-#include <deque>
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "mojo/public/cpp/bindings/strong_binding.h"
-#include "mojo/services/network/public/interfaces/udp_socket.mojom.h"
-#include "mojo/shell/public/cpp/message_loop_ref.h"
-#include "net/base/ip_endpoint.h"
-#include "net/udp/udp_socket.h"
-
-namespace net {
-class IOBuffer;
-class IOBufferWithSize;
-}
-
-namespace mojo {
-
-class UDPSocketImpl : public UDPSocket {
- public:
- // The lifetime of a new UDPSocketImpl is bound to the connection associated
- // with |request|.
- UDPSocketImpl(InterfaceRequest<UDPSocket> request,
- scoped_ptr<mojo::MessageLoopRef> app_refcount);
- ~UDPSocketImpl() override;
-
- // UDPSocket implementation.
- void AllowAddressReuse(
- const Callback<void(NetworkErrorPtr)>& callback) override;
-
- void Bind(NetAddressPtr addr,
- const Callback<void(NetworkErrorPtr,
- NetAddressPtr,
- InterfaceRequest<UDPSocketReceiver>)>& callback)
- override;
-
- void Connect(NetAddressPtr remote_addr,
- const Callback<void(NetworkErrorPtr,
- NetAddressPtr,
- InterfaceRequest<UDPSocketReceiver>)>&
- callback) override;
-
- void SetSendBufferSize(
- uint32_t size,
- const Callback<void(NetworkErrorPtr)>& callback) override;
-
- void SetReceiveBufferSize(
- uint32_t size,
- const Callback<void(NetworkErrorPtr)>& callback) override;
-
- void NegotiateMaxPendingSendRequests(
- uint32_t requested_size,
- const Callback<void(uint32_t)>& callback) override;
-
- void ReceiveMore(uint32_t datagram_number) override;
-
- void SendTo(NetAddressPtr dest_addr,
- Array<uint8_t> data,
- const Callback<void(NetworkErrorPtr)>& callback) override;
-
- private:
- enum State {
- NOT_BOUND_OR_CONNECTED,
- BOUND,
- CONNECTED
- };
-
- struct PendingSendRequest {
- PendingSendRequest();
- ~PendingSendRequest();
-
- NetAddressPtr addr;
- Array<uint8_t> data;
- Callback<void(NetworkErrorPtr)> callback;
- };
-
- void DoRecvFrom();
- void DoSendTo(NetAddressPtr addr,
- Array<uint8_t> data,
- const Callback<void(NetworkErrorPtr)>& callback);
-
- void OnRecvFromCompleted(int net_result);
- void OnSendToCompleted(const Callback<void(NetworkErrorPtr)>& callback,
- int net_result);
-
- bool IsBoundOrConnected() const {
- return state_ == BOUND || state_ == CONNECTED;
- }
-
- StrongBinding<UDPSocket> binding_;
-
- net::UDPSocket socket_;
-
- State state_;
-
- bool allow_address_reuse_;
-
- // Non-null when there is a pending RecvFrom operation on |socket_|.
- scoped_refptr<net::IOBuffer> recvfrom_buffer_;
- // Non-null when there is a pending SendTo operation on |socket_|.
- scoped_refptr<net::IOBufferWithSize> sendto_buffer_;
-
- // The address of the pending RecvFrom operation, if any.
- net::IPEndPoint recvfrom_address_;
-
- // The interface which gets data from fulfilled receive requests.
- UDPSocketReceiverPtr receiver_;
-
- // How many more packets the client side expects to receive.
- size_t remaining_recv_slots_;
-
- // The queue owns the PendingSendRequest instances.
- std::deque<PendingSendRequest*> pending_send_requests_;
- // The maximum size of the |pending_send_requests_| queue.
- size_t max_pending_send_requests_;
-
- scoped_ptr<mojo::MessageLoopRef> app_refcount_;
-
- DISALLOW_COPY_AND_ASSIGN(UDPSocketImpl);
-};
-
-} // namespace mojo
-
-#endif // MOJO_SERVICES_NETWORK_UDP_SOCKET_IMPL_H_
« no previous file with comments | « mojo/services/network/test_manifest.json ('k') | mojo/services/network/udp_socket_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698