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

Unified Diff: ppapi/proxy/ppb_udp_socket_private_proxy.h

Issue 9212047: Add GetBoundAddress to PPB_UDPSocket_Private (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: add a few more unit tests, updates from 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/proxy/ppb_udp_socket_private_proxy.h
diff --git a/ppapi/proxy/ppb_udp_socket_private_proxy.h b/ppapi/proxy/ppb_udp_socket_private_proxy.h
index c6c9e68ddffbe9c082baf253cd966719a641dc73..4677b4ec8002c13c764d7c6d5197a9a3b4d51a11 100644
--- a/ppapi/proxy/ppb_udp_socket_private_proxy.h
+++ b/ppapi/proxy/ppb_udp_socket_private_proxy.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -32,7 +32,8 @@ class PPB_UDPSocket_Private_Proxy : public InterfaceProxy {
// Browser->plugin message handlers.
void OnMsgBindACK(uint32 plugin_dispatcher_id,
uint32 socket_id,
- bool succeeded);
+ bool succeeded,
+ const PP_NetAddress_Private& bound_addr);
void OnMsgRecvFromACK(uint32 plugin_dispatcher_id,
uint32 socket_id,
bool succeeded,

Powered by Google App Engine
This is Rietveld 408576698