| Index: mojo/dart/embedder/builtin.h
|
| diff --git a/mojo/dart/embedder/builtin.h b/mojo/dart/embedder/builtin.h
|
| index bce0c3e95fc38b976c399ad23e94044a9b2c3aec..dad583908abf1942e8c7ca95a8d4835139830922 100644
|
| --- a/mojo/dart/embedder/builtin.h
|
| +++ b/mojo/dart/embedder/builtin.h
|
| @@ -56,15 +56,21 @@ class Builtin {
|
| bool* auto_setup_scope);
|
|
|
| static const uint8_t* NativeSymbol(Dart_NativeFunction nf);
|
| -
|
| + static Dart_Handle GetStringResource(const char* resource_name);
|
| + static void LoadPatchFiles(Dart_Handle library,
|
| + const char* patch_uri,
|
| + const char** patch_files);
|
| typedef struct {
|
| const char* url_;
|
| bool has_natives_;
|
| Dart_NativeEntrySymbol native_symbol_;
|
| Dart_NativeEntryResolver native_resolver_;
|
| + const char* patch_url_;
|
| + const char** patch_resources_;
|
| } builtin_lib_props;
|
| static builtin_lib_props builtin_libraries_[];
|
|
|
| + static const char* mojo_core_patch_paths_[];
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(Builtin);
|
| };
|
|
|
|
|