| Index: src/factory.cc
|
| diff --git a/src/factory.cc b/src/factory.cc
|
| index 8dfab1803f165169b020a9c975cfb117b9826619..46bd4ae244bf56062603c3db227d47b5c30592b1 100644
|
| --- a/src/factory.cc
|
| +++ b/src/factory.cc
|
| @@ -1092,6 +1092,10 @@ Handle<JSTypedArray> Factory::NewJSTypedArray(ExternalArrayType type) {
|
| typed_array_fun = native_context->double_array_fun();
|
| break;
|
|
|
| + case kExternalPixelArray:
|
| + typed_array_fun = native_context->uint8c_array_fun();
|
| + break;
|
| +
|
| default:
|
| UNREACHABLE();
|
| return Handle<JSTypedArray>();
|
|
|