| Index: src/factory.h
|
| ===================================================================
|
| --- src/factory.h (revision 7180)
|
| +++ src/factory.h (working copy)
|
| @@ -166,11 +166,6 @@
|
| static Handle<ByteArray> NewByteArray(int length,
|
| PretenureFlag pretenure = NOT_TENURED);
|
|
|
| - static Handle<PixelArray> NewPixelArray(
|
| - int length,
|
| - uint8_t* external_pointer,
|
| - PretenureFlag pretenure = NOT_TENURED);
|
| -
|
| static Handle<ExternalArray> NewExternalArray(
|
| int length,
|
| ExternalArrayType array_type,
|
| @@ -196,7 +191,7 @@
|
|
|
| static Handle<Map> GetSlowElementsMap(Handle<Map> map);
|
|
|
| - static Handle<Map> GetPixelArrayElementsMap(Handle<Map> map);
|
| + static Handle<Map> NewExternalArrayElementsMap(Handle<Map> map);
|
|
|
| static Handle<FixedArray> CopyFixedArray(Handle<FixedArray> array);
|
|
|
| @@ -252,7 +247,8 @@
|
|
|
| static Handle<Code> NewCode(const CodeDesc& desc,
|
| Code::Flags flags,
|
| - Handle<Object> self_reference);
|
| + Handle<Object> self_reference,
|
| + bool immovable = false);
|
|
|
| static Handle<Code> CopyCode(Handle<Code> code);
|
|
|
|
|