| Index: third_party/WebKit/Source/platform/audio/AudioBus.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/AudioBus.cpp b/third_party/WebKit/Source/platform/audio/AudioBus.cpp
|
| index 677b3d7227dd4e032a8f139f8c89c1ec1be0ff7d..2c8d4f42bddcaf86b2a1d78f8d9048f363e7cce1 100644
|
| --- a/third_party/WebKit/Source/platform/audio/AudioBus.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/AudioBus.cpp
|
| @@ -63,7 +63,7 @@ AudioBus::AudioBus(unsigned numberOfChannels, size_t length, bool allocate)
|
|
|
| for (unsigned i = 0; i < numberOfChannels; ++i) {
|
| PassOwnPtr<AudioChannel> channel = allocate ? adoptPtr(new AudioChannel(length)) : adoptPtr(new AudioChannel(0, length));
|
| - m_channels.append(channel);
|
| + m_channels.append(std::move(channel));
|
| }
|
|
|
| m_layout = LayoutCanonical; // for now this is the only layout we define
|
|
|