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

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 2f2a9b1f2cf0711ccb7f40a7aca27c6b21d47b7a..662032d290c77fc51703a12cc272a53f07074a74 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,
yzshen1 2012/04/06 19:24:33 Wrong indent, and line 127.
raymes 2012/04/06 23:22:47 Done.
+ 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