| Index: third_party/WebKit/Source/core/html/shadow/MediaControlsTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/shadow/MediaControlsTest.cpp b/third_party/WebKit/Source/core/html/shadow/MediaControlsTest.cpp
|
| index cea984fc9993b8a25da473c05bce74afe8ddded6..ca110d33e1d21ed3bc7005a3e31262519e6085a4 100644
|
| --- a/third_party/WebKit/Source/core/html/shadow/MediaControlsTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/shadow/MediaControlsTest.cpp
|
| @@ -88,13 +88,13 @@ class StubFrameLoaderClient : public EmptyFrameLoaderClient {
|
| HTMLMediaElement&,
|
| const WebMediaPlayerSource&,
|
| WebMediaPlayerClient*) override {
|
| - return wrapUnique(new MockVideoWebMediaPlayer);
|
| + return WTF::wrapUnique(new MockVideoWebMediaPlayer);
|
| }
|
|
|
| WebRemotePlaybackClient* createWebRemotePlaybackClient(
|
| HTMLMediaElement&) override {
|
| if (!m_remotePlaybackClient) {
|
| - m_remotePlaybackClient = wrapUnique(new MockWebRemotePlaybackClient);
|
| + m_remotePlaybackClient = WTF::wrapUnique(new MockWebRemotePlaybackClient);
|
| }
|
| return m_remotePlaybackClient.get();
|
| }
|
|
|