| Index: third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| diff --git a/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h b/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| index 41702047266751c50a3817542dbdd5456c2e3404..48cc6936b6bd1cba690ea9659fe8f17d9fc73beb 100644
|
| --- a/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| +++ b/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| @@ -72,7 +72,7 @@ public:
|
|
|
| protected:
|
| TypedArrayBase(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
|
| - : ArrayBufferView(buffer, byteOffset)
|
| + : ArrayBufferView(std::move(buffer), byteOffset)
|
| , m_length(length)
|
| {
|
| }
|
|
|