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

Unified Diff: runtime/bin/builtin_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 (done). Created 8 years, 2 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: runtime/bin/builtin_natives.cc
diff --git a/runtime/bin/builtin_natives.cc b/runtime/bin/builtin_natives.cc
index 2a53c30c6dfe0c5bb5571a59561f0c914503e984..e6b2e5777a09b05b50e021be29416762d4631f87 100644
--- a/runtime/bin/builtin_natives.cc
+++ b/runtime/bin/builtin_natives.cc
@@ -67,7 +67,13 @@
V(Socket_GetRemotePeer, 1) \
V(Socket_GetError, 1) \
V(Socket_GetStdioHandle, 2) \
- V(Socket_NewServicePort, 0)
+ V(Socket_NewServicePort, 0) \
+ V(TlsSocket_Connect, 1) \
+ V(TlsSocket_Destroy, 1) \
+ V(TlsSocket_Init, 1) \
+ V(TlsSocket_ProcessBuffer, 2) \
+ V(TlsSocket_RegisterHandshakeCallbacks, 3) \
+ V(TlsSocket_SetCertificateDatabase, 1)
BUILTIN_NATIVE_LIST(DECLARE_FUNCTION);

Powered by Google App Engine
This is Rietveld 408576698