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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_udp_socket_private.h

Issue 9212047: Add GetBoundAddress to PPB_UDPSocket_Private (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix build error after rebase 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/native_client/src/shared/ppapi_proxy/plugin_ppb_udp_socket_private.h
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_udp_socket_private.h b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_udp_socket_private.h
index efd5d163a4eaf9a15914aaa6358a74bebeeab02a..7e87382d43f64e04ff25420ccc4123f5d2814f28 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_udp_socket_private.h
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_udp_socket_private.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.
@@ -13,7 +13,8 @@ namespace ppapi_proxy {
// Implements the untrusted side of the PPB_UDPSocket_Private interface.
class PluginUDPSocketPrivate {
public:
- static const PPB_UDPSocket_Private* GetInterface();
+ static const PPB_UDPSocket_Private_0_2* GetInterface0_2();
+ static const PPB_UDPSocket_Private_0_3* GetInterface0_3();
private:
NACL_DISALLOW_COPY_AND_ASSIGN(PluginUDPSocketPrivate);

Powered by Google App Engine
This is Rietveld 408576698