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

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

Issue 9699100: Add functionality to pppapi TCPSocket to support secure sockets in flash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 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
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 e2dbe9a04f7c71135e521311416f7f927deb90ab..90ef45e717050cf034b905d21c2fa1e46159ac79 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
@@ -121,8 +121,10 @@ InterfaceMapElement interface_map[] = {
{ PPB_TCPSERVERSOCKET_PRIVATE_INTERFACE,
PluginTCPServerSocketPrivate::GetInterface(),
true },
- { PPB_TCPSOCKET_PRIVATE_INTERFACE, PluginTCPSocketPrivate::GetInterface(),
- true },
+ { PPB_TCPSOCKET_PRIVATE_INTERFACE_0_4,
+ PluginTCPSocketPrivate::GetInterface0_4(), true },
+ { PPB_TCPSOCKET_PRIVATE_INTERFACE_0_3,
+ PluginTCPSocketPrivate::GetInterface0_3(), true },
{ PPB_TESTING_DEV_INTERFACE_0_9, PluginTesting::GetInterface(), true },
{ PPB_TESTING_DEV_INTERFACE, PluginTesting::GetInterface(), true },
{ PPB_UDPSOCKET_PRIVATE_INTERFACE_0_2,

Powered by Google App Engine
This is Rietveld 408576698