Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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_Handle LibraryTagHandlerHelper(Dart_LibraryTag tag, | |
| 58 Dart_Handle library, | |
| 59 Dart_Handle url, | |
| 60 bool import_builtin_lib); | |
| 57 extern Dart_Handle LoadScript(const char* script_name); | 61 extern Dart_Handle LoadScript(const char* script_name); |
| 58 extern Dart_Handle LoadSnapshotCreationScript(const char* script_name); | 62 extern Dart_Handle LoadSnapshotCreationScript(const char* script_name, |
|
Anton Muhin
2011/11/13 16:19:32
why change to this LoadSnapshotCreationScript? It
siva
2011/11/15 02:16:52
Changed to original version.
On 2011/11/13 16:19:
| |
| 63 Dart_LibraryTagHandler handler); | |
| 59 | 64 |
| 60 #endif // BIN_PROCESS_SCRIPT_H_ | 65 #endif // BIN_PROCESS_SCRIPT_H_ |
| OLD | NEW |