| Index: third_party/WebKit/Source/wtf/typed_arrays/IntegralTypedArrayBase.h
|
| diff --git a/third_party/WebKit/Source/wtf/typed_arrays/IntegralTypedArrayBase.h b/third_party/WebKit/Source/wtf/typed_arrays/IntegralTypedArrayBase.h
|
| index ac20dcbbebb51a004cdba929316ca6bd38bc8b4c..5e7cd3f1f6fc65ccf38e3cab451eeca039dc9eb4 100644
|
| --- a/third_party/WebKit/Source/wtf/typed_arrays/IntegralTypedArrayBase.h
|
| +++ b/third_party/WebKit/Source/wtf/typed_arrays/IntegralTypedArrayBase.h
|
| @@ -51,7 +51,7 @@ public:
|
|
|
| protected:
|
| IntegralTypedArrayBase(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
|
| - : TypedArrayBase<T>(buffer, byteOffset, length)
|
| + : TypedArrayBase<T>(std::move(buffer), byteOffset, length)
|
| {
|
| }
|
| };
|
|
|