| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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* kCollectionDevLibURL; |
| 213 static const char* kCoreLibURL; | 213 static const char* kCoreLibURL; |
| 214 static const char* kIsolateLibURL; | 214 static const char* kIsolateLibURL; |
| 215 static const char* kIOLibURL; | 215 static const char* kIOLibURL; |
| 216 static const char* kIOLibPatchURL; | 216 static const char* kIOLibPatchURL; |
| 217 static const char* kUriLibURL; | 217 static const char* kUriLibURL; |
| 218 static const char* kHttpScheme; | 218 static const char* kHttpScheme; |
| 219 static const char* kVMServiceLibURL; |
| 219 | 220 |
| 220 static const char* kIdFieldName; | 221 static const char* kIdFieldName; |
| 221 | 222 |
| 222 static uint8_t magic_number[]; | 223 static uint8_t magic_number[]; |
| 223 | 224 |
| 224 private: | 225 private: |
| 225 static const char* GetCanonicalPath(const char* reference_dir, | 226 static const char* GetCanonicalPath(const char* reference_dir, |
| 226 const char* filename); | 227 const char* filename); |
| 227 | 228 |
| 228 DISALLOW_ALLOCATION(); | 229 DISALLOW_ALLOCATION(); |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 } | 543 } |
| 543 | 544 |
| 544 private: | 545 private: |
| 545 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); | 546 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); |
| 546 }; | 547 }; |
| 547 | 548 |
| 548 } // namespace bin | 549 } // namespace bin |
| 549 } // namespace dart | 550 } // namespace dart |
| 550 | 551 |
| 551 #endif // BIN_DARTUTILS_H_ | 552 #endif // BIN_DARTUTILS_H_ |
| OLD | NEW |