| Index: third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h
|
| diff --git a/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h b/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h
|
| index b5b6628231049d941de398b9f191bbfc7568b067..a4ee2d6113e6a256528f449f4c9d3e145a362846 100644
|
| --- a/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h
|
| +++ b/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h
|
| @@ -68,9 +68,12 @@ class WTF_EXPORT ArrayBufferContents {
|
| ArrayBufferContents(DataHandle,
|
| unsigned size_in_bytes,
|
| SharingType is_shared);
|
| + ArrayBufferContents(ArrayBufferContents&&) = default;
|
|
|
| ~ArrayBufferContents();
|
|
|
| + ArrayBufferContents& operator=(ArrayBufferContents&&) = default;
|
| +
|
| void Neuter();
|
|
|
| void* Data() const {
|
|
|