| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 static const char* original_working_directory; | 197 static const char* original_working_directory; |
| 198 | 198 |
| 199 static const char* kDartScheme; | 199 static const char* kDartScheme; |
| 200 static const char* kDartExtensionScheme; | 200 static const char* kDartExtensionScheme; |
| 201 static const char* kAsyncLibURL; | 201 static const char* kAsyncLibURL; |
| 202 static const char* kBuiltinLibURL; | 202 static const char* kBuiltinLibURL; |
| 203 static const char* kCoreLibURL; | 203 static const char* kCoreLibURL; |
| 204 static const char* kIOLibURL; | 204 static const char* kIOLibURL; |
| 205 static const char* kIOLibPatchURL; | 205 static const char* kIOLibPatchURL; |
| 206 static const char* kUriLibURL; | 206 static const char* kUriLibURL; |
| 207 static const char* kPlatformLibURL; | |
| 208 static const char* kHttpScheme; | 207 static const char* kHttpScheme; |
| 209 | 208 |
| 210 static const char* kIdFieldName; | 209 static const char* kIdFieldName; |
| 211 | 210 |
| 212 static uint8_t magic_number[]; | 211 static uint8_t magic_number[]; |
| 213 | 212 |
| 214 private: | 213 private: |
| 215 static const char* GetCanonicalPath(const char* reference_dir, | 214 static const char* GetCanonicalPath(const char* reference_dir, |
| 216 const char* filename); | 215 const char* filename); |
| 217 | 216 |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 } | 531 } |
| 533 | 532 |
| 534 private: | 533 private: |
| 535 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); | 534 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); |
| 536 }; | 535 }; |
| 537 | 536 |
| 538 } // namespace bin | 537 } // namespace bin |
| 539 } // namespace dart | 538 } // namespace dart |
| 540 | 539 |
| 541 #endif // BIN_DARTUTILS_H_ | 540 #endif // BIN_DARTUTILS_H_ |
| OLD | NEW |