| 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; |
| 207 static const char* kHttpScheme; | 208 static const char* kHttpScheme; |
| 208 | 209 |
| 209 static const char* kIdFieldName; | 210 static const char* kIdFieldName; |
| 210 | 211 |
| 211 static uint8_t magic_number[]; | 212 static uint8_t magic_number[]; |
| 212 | 213 |
| 213 private: | 214 private: |
| 214 static const char* GetCanonicalPath(const char* reference_dir, | 215 static const char* GetCanonicalPath(const char* reference_dir, |
| 215 const char* filename); | 216 const char* filename); |
| 216 | 217 |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 } | 520 } |
| 520 | 521 |
| 521 private: | 522 private: |
| 522 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); | 523 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); |
| 523 }; | 524 }; |
| 524 | 525 |
| 525 } // namespace bin | 526 } // namespace bin |
| 526 } // namespace dart | 527 } // namespace dart |
| 527 | 528 |
| 528 #endif // BIN_DARTUTILS_H_ | 529 #endif // BIN_DARTUTILS_H_ |
| OLD | NEW |