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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc

Issue 10823187: NaCl proxy for PPB_NetworkMonitor_Private (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
index ed3f6739cb273dc119d033b4b1e1ef5e6e4f55d6..f6651910f062c973a50f5fa0f34238522dfdacb6 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
@@ -29,6 +29,8 @@
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_mouse_cursor.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_mouse_lock.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_net_address_private.h"
+#include "native_client/src/shared/ppapi_proxy/plugin_ppb_network_list_private.h"
+#include "native_client/src/shared/ppapi_proxy/plugin_ppb_network_monitor_private.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_pdf.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_scrollbar.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_tcp_server_socket_private.h"
@@ -96,6 +98,10 @@ InterfaceMapElement interface_map[] = {
PluginNetAddressPrivate::GetInterface1_0(), true },
{ PPB_NETADDRESS_PRIVATE_INTERFACE_1_1,
PluginNetAddressPrivate::GetInterface1_1(), true },
+ { PPB_NETWORKLIST_PRIVATE_INTERFACE, PluginNetworkListPrivate::GetInterface(),
+ true },
+ { PPB_NETWORKMONITOR_PRIVATE_INTERFACE,
+ PluginNetworkMonitorPrivate::GetInterface(), true },
{ PPB_OPENGLES2_INTERFACE_1_0, PluginGraphics3D::GetOpenGLESInterface(),
true },
{ PPB_OPENGLES2_INSTANCEDARRAYS_INTERFACE_1_0,

Powered by Google App Engine
This is Rietveld 408576698