OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #ifndef BIN_DARTUTILS_H_ | 5 #ifndef BIN_DARTUTILS_H_ |
6 #define BIN_DARTUTILS_H_ | 6 #define BIN_DARTUTILS_H_ |
7 | 7 |
8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
9 #include "include/dart_native_api.h" | 9 #include "include/dart_native_api.h" |
10 | 10 |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 // Write a magic number to indicate a script snapshot file. | 202 // Write a magic number to indicate a script snapshot file. |
203 static void WriteMagicNumber(File* file); | 203 static void WriteMagicNumber(File* file); |
204 | 204 |
205 // Global state that stores the original working directory.. | 205 // Global state that stores the original working directory.. |
206 static const char* original_working_directory; | 206 static const char* original_working_directory; |
207 | 207 |
208 static const char* kDartScheme; | 208 static const char* kDartScheme; |
209 static const char* kDartExtensionScheme; | 209 static const char* kDartExtensionScheme; |
210 static const char* kAsyncLibURL; | 210 static const char* kAsyncLibURL; |
211 static const char* kBuiltinLibURL; | 211 static const char* kBuiltinLibURL; |
| 212 static const char* kCollectionDevLibURL; |
212 static const char* kCoreLibURL; | 213 static const char* kCoreLibURL; |
| 214 static const char* kIsolateLibURL; |
213 static const char* kIOLibURL; | 215 static const char* kIOLibURL; |
214 static const char* kIOLibPatchURL; | 216 static const char* kIOLibPatchURL; |
215 static const char* kUriLibURL; | 217 static const char* kUriLibURL; |
216 static const char* kHttpScheme; | 218 static const char* kHttpScheme; |
217 | 219 |
218 static const char* kIdFieldName; | 220 static const char* kIdFieldName; |
219 | 221 |
220 static uint8_t magic_number[]; | 222 static uint8_t magic_number[]; |
221 | 223 |
222 private: | 224 private: |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 } | 542 } |
541 | 543 |
542 private: | 544 private: |
543 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); | 545 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); |
544 }; | 546 }; |
545 | 547 |
546 } // namespace bin | 548 } // namespace bin |
547 } // namespace dart | 549 } // namespace dart |
548 | 550 |
549 #endif // BIN_DARTUTILS_H_ | 551 #endif // BIN_DARTUTILS_H_ |
OLD | NEW |