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

Unified Diff: bin/run_vm_tests.cc

Issue 8439061: Support command line parameters to specify a url to file name mapping. This is used during snapsh... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years, 1 month 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
Index: bin/run_vm_tests.cc
===================================================================
--- bin/run_vm_tests.cc (revision 1106)
+++ bin/run_vm_tests.cc (working copy)
@@ -50,10 +50,10 @@
}
-static int Main(int argc, char** argv) {
+static int Main(int argc, const char** argv) {
// Flags being passed to the Dart VM.
int dart_argc = 0;
- char** dart_argv = NULL;
+ const char** dart_argv = NULL;
if (argc < 2) {
// Bad parameter count.
@@ -93,6 +93,6 @@
} // namespace dart
-int main(int argc, char** argv) {
+int main(int argc, const char** argv) {
return dart::Main(argc, argv);
}
« bin/gen_snapshot.cc ('K') | « bin/process_script.cc ('k') | include/dart_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698