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

Unified Diff: Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.h

Issue 16305017: Removes the old createDataChannel and starts to use the new one with WebRTCDataChannelInit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 months 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: Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.h
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.h b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.h
index f0fdb90b26e454cae81a8cc1c75bde50032a84d0..9032593b399f27045545c941c4687e22398a6a35 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.h
@@ -30,13 +30,17 @@
#include "public/platform/WebRTCDataChannelHandler.h"
#include "public/platform/WebString.h"
+namespace WebKit {
+struct WebRTCDataChannelInit;
+}
+
namespace WebTestRunner {
class WebTestDelegate;
class MockWebRTCDataChannelHandler : public WebKit::WebRTCDataChannelHandler {
public:
- MockWebRTCDataChannelHandler(WebKit::WebString label, bool reliable, WebTestDelegate*);
+ MockWebRTCDataChannelHandler(WebKit::WebString label, const WebKit::WebRTCDataChannelInit&, WebTestDelegate*);
virtual void setClient(WebKit::WebRTCDataChannelHandlerClient*) OVERRIDE;
virtual WebKit::WebString label() OVERRIDE { return m_label; }

Powered by Google App Engine
This is Rietveld 408576698