Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: runtime/bin/dartutils.h

Issue 1916793003: - Allow for loading dart:html and friends into the standalone (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Review comments. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "bin/isolate_data.h" 8 #include "bin/isolate_data.h"
9 #include "include/dart_api.h" 9 #include "include/dart_api.h"
10 #include "include/dart_native_api.h" 10 #include "include/dart_native_api.h"
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 216
217 static const char* const kDartScheme; 217 static const char* const kDartScheme;
218 static const char* const kDartExtensionScheme; 218 static const char* const kDartExtensionScheme;
219 static const char* const kAsyncLibURL; 219 static const char* const kAsyncLibURL;
220 static const char* const kBuiltinLibURL; 220 static const char* const kBuiltinLibURL;
221 static const char* const kCoreLibURL; 221 static const char* const kCoreLibURL;
222 static const char* const kInternalLibURL; 222 static const char* const kInternalLibURL;
223 static const char* const kIsolateLibURL; 223 static const char* const kIsolateLibURL;
224 static const char* const kIOLibURL; 224 static const char* const kIOLibURL;
225 static const char* const kIOLibPatchURL; 225 static const char* const kIOLibPatchURL;
226 static const char* const kHTMLLibURL;
siva 2016/04/25 23:38:31 Is this needed?
Ivan Posva 2016/04/26 21:17:43 No.
226 static const char* const kUriLibURL; 227 static const char* const kUriLibURL;
227 static const char* const kHttpScheme; 228 static const char* const kHttpScheme;
228 static const char* const kVMServiceLibURL; 229 static const char* const kVMServiceLibURL;
229 230
230 static const uint8_t magic_number[]; 231 static const uint8_t magic_number[];
231 232
232 private: 233 private:
233 static Dart_Handle SetWorkingDirectory(); 234 static Dart_Handle SetWorkingDirectory();
234 static Dart_Handle ExtensionPathFromUri(Dart_Handle extension_uri); 235 static Dart_Handle ExtensionPathFromUri(Dart_Handle extension_uri);
235 236
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 bool is_typed_data_; 663 bool is_typed_data_;
663 664
664 DISALLOW_ALLOCATION(); 665 DISALLOW_ALLOCATION();
665 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer); 666 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer);
666 }; 667 };
667 668
668 } // namespace bin 669 } // namespace bin
669 } // namespace dart 670 } // namespace dart
670 671
671 #endif // BIN_DARTUTILS_H_ 672 #endif // BIN_DARTUTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698