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

Unified Diff: sky/engine/bindings/builtin.cc

Issue 1027603002: Dart: Removes all but native calls and the handle watcher from the snapshot. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Hoist application interface dependence Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/bindings/builtin.h ('k') | sky/engine/bindings/mojo_natives.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings/builtin.cc
diff --git a/sky/engine/bindings/builtin.cc b/sky/engine/bindings/builtin.cc
index d6860c0823b38187c9e87eac53205562dee8b448..81fd9d3bce5949ec074efce4135da72cdafaf43f 100644
--- a/sky/engine/bindings/builtin.cc
+++ b/sky/engine/bindings/builtin.cc
@@ -25,10 +25,12 @@ struct LibraryDescriptor {
const LibraryDescriptor kBuiltinLibraries[] = {
/* { url_, has_natives_, native_symbol_, native_resolver_ } */
- {"dart:sky_builtin", true, BuiltinNatives::NativeSymbol, BuiltinNatives::NativeLookup},
+ {"dart:sky_builtin",
+ true,
+ BuiltinNatives::NativeSymbol,
+ BuiltinNatives::NativeLookup},
{"dart:sky", true, skySnapshotSymbolizer, skySnapshotResolver},
- {"dart:mojo.bindings", false, nullptr, nullptr},
- {"dart:mojo.core", true, MojoNativeSymbol, MojoNativeLookup},
+ {"dart:mojo.internal", true, MojoNativeSymbol, MojoNativeLookup},
};
} // namespace
« no previous file with comments | « sky/engine/bindings/builtin.h ('k') | sky/engine/bindings/mojo_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698