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

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

Issue 1824053002: Some build file cleanup (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Deps in new root certs Created 4 years, 9 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/secure_socket_boringssl.cc ('k') | runtime/bin/secure_socket_unsupported.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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_SECURE_SOCKET_DISABLED)
6
5 #include "platform/globals.h" 7 #include "platform/globals.h"
6 #if defined(TARGET_OS_MACOS) 8 #if defined(TARGET_OS_MACOS)
7 9
8 #include "bin/secure_socket.h" 10 #include "bin/secure_socket.h"
9 #include "bin/secure_socket_macos.h" 11 #include "bin/secure_socket_macos.h"
10 12
11 #include <errno.h> 13 #include <errno.h>
12 #include <fcntl.h> 14 #include <fcntl.h>
13 #include <sys/stat.h> 15 #include <sys/stat.h>
14 #include <sys/syslimits.h> 16 #include <sys/syslimits.h>
(...skipping 2050 matching lines...) Expand 10 before | Expand all | Expand 10 after
2065 } 2067 }
2066 } 2068 }
2067 *bytes_processed = static_cast<intptr_t>(bytes); 2069 *bytes_processed = static_cast<intptr_t>(bytes);
2068 return status; 2070 return status;
2069 } 2071 }
2070 2072
2071 } // namespace bin 2073 } // namespace bin
2072 } // namespace dart 2074 } // namespace dart
2073 2075
2074 #endif // defined(TARGET_OS_MACOS) 2076 #endif // defined(TARGET_OS_MACOS)
2077
2078 #endif // !defined(DART_IO_SECURE_SOCKET_DISABLED)
OLDNEW
« no previous file with comments | « runtime/bin/secure_socket_boringssl.cc ('k') | runtime/bin/secure_socket_unsupported.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698