Chromium Code Reviews| Index: src/handles.h |
| diff --git a/src/handles.h b/src/handles.h |
| index d42d1bdbc5c26725eea8fdb4b95c64e3d0107478..85386580478cc7c183374f94e60515740955dd5e 100644 |
| --- a/src/handles.h |
| +++ b/src/handles.h |
| @@ -29,7 +29,6 @@ |
| #define V8_HANDLES_H_ |
| #include "allocation.h" |
| -#include "apiutils.h" |
| #include "objects.h" |
| namespace v8 { |
| @@ -317,6 +316,17 @@ class SealHandleScope BASE_EMBEDDED { |
| #endif |
| }; |
| +struct HandleScopeData { |
| + internal::Object** next; |
| + internal::Object** limit; |
| + int level; |
| + |
| + void Initialize() { |
| + next = limit = NULL; |
| + level = 0; |
| + } |
| +}; |
| + |
| } } // namespace v8::internal |
| #endif // V8_HANDLES_H_ |