| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 556aaa2b75603f55cbbbc5642a96944d8c997f0b..77aab244709a31870a5e36578f2631d78596cf07 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -28,6 +28,7 @@
|
| #ifndef V8_OBJECTS_H_
|
| #define V8_OBJECTS_H_
|
|
|
| +#include "allocation.h"
|
| #include "builtins.h"
|
| #include "smart-pointer.h"
|
| #include "unicode-inl.h"
|
| @@ -5924,8 +5925,8 @@ class Relocatable BASE_EMBEDDED {
|
|
|
| static void PostGarbageCollectionProcessing();
|
| static int ArchiveSpacePerThread();
|
| - static char* ArchiveState(char* to);
|
| - static char* RestoreState(char* from);
|
| + static char* ArchiveState(Isolate* isolate, char* to);
|
| + static char* RestoreState(Isolate* isolate, char* from);
|
| static void Iterate(ObjectVisitor* v);
|
| static void Iterate(ObjectVisitor* v, Relocatable* top);
|
| static char* Iterate(ObjectVisitor* v, char* t);
|
|
|