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