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

Unified Diff: runtime/bin/main.cc

Issue 11260010: Moved RuntimeOptions from coreimpl to core, renamed to _OptionsImpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « lib/coreimpl/options.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/main.cc
diff --git a/runtime/bin/main.cc b/runtime/bin/main.cc
index df010169452e9282d51ca221ef79c3a8d50d56f3..3c4a8c8c46b81e7f88f5220de1b0f586763987ea 100644
--- a/runtime/bin/main.cc
+++ b/runtime/bin/main.cc
@@ -322,7 +322,7 @@ static Dart_Handle SetupRuntimeOptions(CommandLineOptions* options,
return result;
}
}
- Dart_Handle core_lib_url = Dart_NewString("dart:coreimpl");
+ Dart_Handle core_lib_url = Dart_NewString("dart:core");
if (Dart_IsError(core_lib_url)) {
return core_lib_url;
}
@@ -330,7 +330,7 @@ static Dart_Handle SetupRuntimeOptions(CommandLineOptions* options,
if (Dart_IsError(core_lib)) {
return core_lib;
}
- Dart_Handle runtime_options_class_name = Dart_NewString("RuntimeOptions");
+ Dart_Handle runtime_options_class_name = Dart_NewString("_OptionsImpl");
if (Dart_IsError(runtime_options_class_name)) {
return runtime_options_class_name;
}
« no previous file with comments | « lib/coreimpl/options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698