| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index f830cb33958ae3be7c069f4f8bbd985c3d524637..1c48e3502bfc42cf9793f51d248a0108b680955d 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -10922,6 +10922,9 @@ class JSArrayBuffer: public JSObject {
|
| inline bool is_shared();
|
| inline void set_is_shared(bool value);
|
|
|
| + inline bool has_guard_region();
|
| + inline void set_has_guard_region(bool value);
|
| +
|
| DECLARE_CAST(JSArrayBuffer)
|
|
|
| void Neuter();
|
| @@ -10961,6 +10964,7 @@ class JSArrayBuffer: public JSObject {
|
| class IsNeuterable : public BitField<bool, 2, 1> {};
|
| class WasNeutered : public BitField<bool, 3, 1> {};
|
| class IsShared : public BitField<bool, 4, 1> {};
|
| + class HasGuardRegion : public BitField<bool, 5, 1> {};
|
|
|
| private:
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(JSArrayBuffer);
|
|
|