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

Side by Side Diff: runtime/bin/io_service.cc

Issue 2903743002: Porting SecureSocket to use BoringSSL on OSX (Closed)
Patch Set: Addressed nits, confirmed change works on Windows Created 3 years, 6 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 unified diff | Download patch
« no previous file with comments | « runtime/bin/io_impl_sources.gypi ('k') | runtime/bin/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #if !defined(DART_IO_DISABLED) && !defined(DART_IO_SECURE_SOCKET_DISABLED) 5 #if !defined(DART_IO_DISABLED) && !defined(DART_IO_SECURE_SOCKET_DISABLED)
6 6
7 #include "bin/io_service.h" 7 #include "bin/io_service.h"
8 8
9 #include "bin/dartutils.h" 9 #include "bin/dartutils.h"
10 #include "bin/directory.h" 10 #include "bin/directory.h"
11 #include "bin/file.h" 11 #include "bin/file.h"
12 #include "bin/io_buffer.h" 12 #include "bin/io_buffer.h"
13 #include "bin/secure_socket.h" 13 #include "bin/secure_socket_filter.h"
14 #include "bin/security_context.h"
14 #include "bin/socket.h" 15 #include "bin/socket.h"
15 #include "bin/utils.h" 16 #include "bin/utils.h"
16 17
17 #include "include/dart_api.h" 18 #include "include/dart_api.h"
18 19
19 #include "platform/globals.h" 20 #include "platform/globals.h"
20 #include "platform/utils.h" 21 #include "platform/utils.h"
21 22
22 namespace dart { 23 namespace dart {
23 namespace bin { 24 namespace bin {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 Dart_Handle send_port = Dart_NewSendPort(service_port); 68 Dart_Handle send_port = Dart_NewSendPort(service_port);
68 Dart_SetReturnValue(args, send_port); 69 Dart_SetReturnValue(args, send_port);
69 } 70 }
70 } 71 }
71 72
72 } // namespace bin 73 } // namespace bin
73 } // namespace dart 74 } // namespace dart
74 75
75 #endif // !defined(DART_IO_DISABLED) && 76 #endif // !defined(DART_IO_DISABLED) &&
76 // !defined(DART_IO_SECURE_SOCKET_DISABLED) 77 // !defined(DART_IO_SECURE_SOCKET_DISABLED)
OLDNEW
« no previous file with comments | « runtime/bin/io_impl_sources.gypi ('k') | runtime/bin/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698