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

Side by Side Diff: runtime/bin/process_script.h

Issue 8380020: Refactor the dart api a bit: (Closed) Base URL: http://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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/process.cc ('k') | runtime/bin/process_script.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef BIN_PROCESS_SCRIPT_H_ 5 #ifndef BIN_PROCESS_SCRIPT_H_
6 #define BIN_PROCESS_SCRIPT_H_ 6 #define BIN_PROCESS_SCRIPT_H_
7 7
8 #include <stdlib.h> 8 #include <stdlib.h>
9 #include <string.h> 9 #include <string.h>
10 #include <stdio.h> 10 #include <stdio.h>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 void* operator new(size_t size); 47 void* operator new(size_t size);
48 CommandLineOptions(const CommandLineOptions&); 48 CommandLineOptions(const CommandLineOptions&);
49 void operator=(const CommandLineOptions&); 49 void operator=(const CommandLineOptions&);
50 50
51 int count_; 51 int count_;
52 int max_count_; 52 int max_count_;
53 char** arguments_; 53 char** arguments_;
54 }; 54 };
55 55
56 56
57 extern Dart_Result LoadScript(const char* script_name); 57 extern Dart_Handle LoadScript(const char* script_name);
58 58
59 #endif // BIN_PROCESS_SCRIPT_H_ 59 #endif // BIN_PROCESS_SCRIPT_H_
OLDNEW
« no previous file with comments | « runtime/bin/process.cc ('k') | runtime/bin/process_script.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698