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

Side by Side Diff: content/browser/renderer_host/pepper_udp_socket.h

Issue 9212047: Add GetBoundAddress to PPB_UDPSocket_Private (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: A few more changes via review Created 8 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
viettrungluu 2012/02/07 23:03:58 2012, here and elsewhere. I don't actually care, b
mtilburg1 2012/02/08 15:27:01 Done.
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 CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 int32 routing_id_; 49 int32 routing_id_;
50 uint32 plugin_dispatcher_id_; 50 uint32 plugin_dispatcher_id_;
51 uint32 socket_id_; 51 uint32 socket_id_;
52 52
53 scoped_ptr<net::UDPServerSocket> socket_; 53 scoped_ptr<net::UDPServerSocket> socket_;
54 54
55 scoped_refptr<net::IOBuffer> recvfrom_buffer_; 55 scoped_refptr<net::IOBuffer> recvfrom_buffer_;
56 scoped_refptr<net::IOBuffer> sendto_buffer_; 56 scoped_refptr<net::IOBuffer> sendto_buffer_;
57 57
58 net::IPEndPoint recvfrom_address_; 58 net::IPEndPoint recvfrom_address_;
59 net::IPEndPoint bound_address_;
59 60
60 DISALLOW_COPY_AND_ASSIGN(PepperUDPSocket); 61 DISALLOW_COPY_AND_ASSIGN(PepperUDPSocket);
61 }; 62 };
62 63
63 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_ 64 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_UDP_SOCKET_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper_udp_socket.cc » ('j') | content/browser/renderer_host/pepper_udp_socket.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698