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

Unified Diff: runtime/bin/main.cc

Issue 8437056: Implemented File create API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
« no previous file with comments | « runtime/bin/gen_snapshot.cc ('k') | runtime/bin/process_script.cc » ('j') | 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 3d40a08e2f14e2aabe4531d9e207ce7db324dbe1..5992bd8c654fe2d3762fb2d3805d07f9022a36ed 100644
--- a/runtime/bin/main.cc
+++ b/runtime/bin/main.cc
@@ -93,7 +93,7 @@ static int ParseArguments(int argc,
static void DumpPprofSymbolInfo() {
if (generate_pprof_symbols_filename != NULL) {
Dart_EnterScope();
- File* pprof_file = File::OpenFile(generate_pprof_symbols_filename, true);
+ File* pprof_file = File::Open(generate_pprof_symbols_filename, true);
ASSERT(pprof_file != NULL);
void* buffer;
int buffer_size;
« no previous file with comments | « runtime/bin/gen_snapshot.cc ('k') | runtime/bin/process_script.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698