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

Unified Diff: runtime/bin/builtin_natives.cc

Issue 10704159: Start adding TLS (SSL) sockets to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add Android stubs for TlsSocket implementation. 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: runtime/bin/builtin_natives.cc
diff --git a/runtime/bin/builtin_natives.cc b/runtime/bin/builtin_natives.cc
index 008f7b91e4fdbaa89b8ba38b56eea4226d453f58..d35c74563b8b893e78867c7e3c45f641d47a7614 100644
--- a/runtime/bin/builtin_natives.cc
+++ b/runtime/bin/builtin_natives.cc
@@ -65,7 +65,12 @@
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)
BUILTIN_NATIVE_LIST(DECLARE_FUNCTION);

Powered by Google App Engine
This is Rietveld 408576698