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

Unified Diff: runtime/bin/io_natives.cc

Issue 10916081: Add secure sockets to dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments, remove HandshakeStartHandler. Created 8 years, 1 month 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
« no previous file with comments | « runtime/bin/io_impl_sources.gypi ('k') | runtime/bin/io_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/io_natives.cc
diff --git a/runtime/bin/io_natives.cc b/runtime/bin/io_natives.cc
index 549ab41d1b5a67e7439a3dae1aa95b6b5cbc2ae7..1cd02367b1e3eb10e88a0dbba3a6c2ea342fc682 100644
--- a/runtime/bin/io_natives.cc
+++ b/runtime/bin/io_natives.cc
@@ -39,8 +39,14 @@
V(Socket_GetRemotePeer, 1) \
V(Socket_GetError, 1) \
V(Socket_GetStdioHandle, 2) \
- V(Socket_NewServicePort, 0)
-
+ V(Socket_NewServicePort, 0) \
+ V(TlsSocket_Connect, 3) \
+ V(TlsSocket_Destroy, 1) \
+ V(TlsSocket_Handshake, 1) \
+ V(TlsSocket_Init, 1) \
+ V(TlsSocket_ProcessBuffer, 2) \
+ V(TlsSocket_RegisterHandshakeCompleteCallback, 2) \
+ V(TlsSocket_SetCertificateDatabase, 1)
IO_NATIVE_LIST(DECLARE_FUNCTION);
« no previous file with comments | « runtime/bin/io_impl_sources.gypi ('k') | runtime/bin/io_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698