Chromium Code Reviews| Index: src/compiler.h |
| diff --git a/src/compiler.h b/src/compiler.h |
| index fc2e22399673106396e6fd625b0c455afbe0e1bb..5e22a0013908b5a871660acf5a944608a3d29937 100644 |
| --- a/src/compiler.h |
| +++ b/src/compiler.h |
| @@ -203,6 +203,7 @@ class V8_EXPORT_PRIVATE CompilationJob { |
| State state() const { return state_; } |
| CompilationInfo* info() const { return info_; } |
| Isolate* isolate() const; |
| + virtual size_t AllocatedMemory() const { return 0; } |
| protected: |
| // Overridden by the actual implementation. |