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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCDataChannelTest.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/modules/peerconnection/RTCDataChannelTest.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelTest.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelTest.cpp
index cee4b79bdb212d6971b953f224240e94f5175bbb..538b7bb0be06af88a91271afae8e3f9bebf972f7 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelTest.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelTest.cpp
@@ -75,7 +75,7 @@ class MockHandler final : public WebRTCDataChannelHandler {
TEST(RTCDataChannelTest, BufferedAmount) {
MockHandler* handler = new MockHandler();
- RTCDataChannel* channel = RTCDataChannel::create(0, wrapUnique(handler));
+ RTCDataChannel* channel = RTCDataChannel::create(0, WTF::wrapUnique(handler));
handler->changeState(WebRTCDataChannelHandlerClient::ReadyStateOpen);
String message(std::string(100, 'A').c_str());
@@ -85,7 +85,7 @@ TEST(RTCDataChannelTest, BufferedAmount) {
TEST(RTCDataChannelTest, BufferedAmountLow) {
MockHandler* handler = new MockHandler();
- RTCDataChannel* channel = RTCDataChannel::create(0, wrapUnique(handler));
+ RTCDataChannel* channel = RTCDataChannel::create(0, WTF::wrapUnique(handler));
// Add and drain 100 bytes
handler->changeState(WebRTCDataChannelHandlerClient::ReadyStateOpen);

Powered by Google App Engine
This is Rietveld 408576698