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

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
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 <assert.h> 8 #include <assert.h>
9 #include <stdlib.h> 9 #include <stdlib.h>
10 #include <string.h> 10 #include <string.h>
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 void* operator new(size_t size); 48 void* operator new(size_t size);
49 CommandLineOptions(const CommandLineOptions&); 49 CommandLineOptions(const CommandLineOptions&);
50 void operator=(const CommandLineOptions&); 50 void operator=(const CommandLineOptions&);
51 51
52 int count_; 52 int count_;
53 int max_count_; 53 int max_count_;
54 char** arguments_; 54 char** arguments_;
55 }; 55 };
56 56
57 57
58 extern Dart_Result LoadScript(const char* script_name); 58 extern Dart_Handle LoadScript(const char* script_name);
59 59
60 #endif // BIN_PROCESS_SCRIPT_H_ 60 #endif // BIN_PROCESS_SCRIPT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698