v8.h | v8.h | |||
---|---|---|---|---|
skipping to change at line 1412 | skipping to change at line 1412 | |||
DontDelete = 1 << 2 | DontDelete = 1 << 2 | |||
}; | }; | |||
enum ExternalArrayType { | enum ExternalArrayType { | |||
kExternalByteArray = 1, | kExternalByteArray = 1, | |||
kExternalUnsignedByteArray, | kExternalUnsignedByteArray, | |||
kExternalShortArray, | kExternalShortArray, | |||
kExternalUnsignedShortArray, | kExternalUnsignedShortArray, | |||
kExternalIntArray, | kExternalIntArray, | |||
kExternalUnsignedIntArray, | kExternalUnsignedIntArray, | |||
kExternalFloatArray | kExternalFloatArray, | |||
kExternalPixelArray | ||||
}; | }; | |||
/** | /** | |||
* Accessor[Getter|Setter] are used as callback functions when | * Accessor[Getter|Setter] are used as callback functions when | |||
* setting|getting a particular property. See Object and ObjectTemplate's | * setting|getting a particular property. See Object and ObjectTemplate's | |||
* method SetAccessor. | * method SetAccessor. | |||
*/ | */ | |||
typedef Handle<Value> (*AccessorGetter)(Local<String> property, | typedef Handle<Value> (*AccessorGetter)(Local<String> property, | |||
const AccessorInfo& info); | const AccessorInfo& info); | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added | |||