| Index: third_party/WebKit/Source/core/dom/DOMTypedArray.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMTypedArray.h b/third_party/WebKit/Source/core/dom/DOMTypedArray.h
|
| index abdd363dbb770a4e3cd842f4b3ec500961e97e12..d269e16f47b7ae28a62f1a3129103450fba02b29 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMTypedArray.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMTypedArray.h
|
| @@ -79,10 +79,10 @@ class CORE_TEMPLATE_CLASS_EXPORT DOMTypedArray final
|
|
|
| private:
|
| explicit DOMTypedArray(PassRefPtr<WTFTypedArray> buffer_view)
|
| - : DOMArrayBufferView(buffer_view) {}
|
| + : DOMArrayBufferView(std::move(buffer_view)) {}
|
| DOMTypedArray(PassRefPtr<WTFTypedArray> buffer_view,
|
| DOMArrayBufferBase* dom_array_buffer)
|
| - : DOMArrayBufferView(buffer_view, dom_array_buffer) {}
|
| + : DOMArrayBufferView(std::move(buffer_view), dom_array_buffer) {}
|
| };
|
|
|
| extern template class CORE_EXTERN_TEMPLATE_EXPORT
|
|
|