Chromium Code Reviews| Index: src/gdb-jit.h |
| diff --git a/src/gdb-jit.h b/src/gdb-jit.h |
| index 0c80fb65b759527faca15d40a7cafb7a2a8c2c99..589cad5485dde1548b44ac01d9f69105f83dd7af 100644 |
| --- a/src/gdb-jit.h |
| +++ b/src/gdb-jit.h |
| @@ -43,6 +43,8 @@ |
| namespace v8 { |
| namespace internal { |
| +class CompilationInfo; |
| + |
| #define CODE_TAGS_LIST(V) \ |
| V(LOAD_IC) \ |
| V(KEYED_LOAD_IC) \ |
| @@ -113,11 +115,13 @@ class GDBJITInterface: public AllStatic { |
| static void AddCode(const char* name, |
| Code* code, |
| CodeTag tag, |
| - Script* script = NULL); |
| + Script* script = NULL, |
|
Vyacheslav Egorov (Chromium)
2011/06/23 11:14:47
C++ Style Guide does not allow default arguments.
zarko
2011/06/27 22:24:29
No problem; I think I got the other callers.
On 2
|
| + CompilationInfo* info = NULL); |
| static void AddCode(Handle<String> name, |
| Handle<Script> script, |
| - Handle<Code> code); |
| + Handle<Code> code, |
| + CompilationInfo* info); |
| static void AddCode(CodeTag tag, String* name, Code* code); |