Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Unified Diff: third_party/WebKit/Source/core/html/shadow/MediaControlsTest.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
« no previous file with comments | « third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.h ('k') | third_party/WebKit/Source/core/input/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698