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

Unified Diff: content/renderer/media/mock_data_channel_impl.h

Issue 2520033005: MockDataChannelImpl: Implement new interface methods as NOTIMPLEMENTED() (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | content/renderer/media/mock_data_channel_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/mock_data_channel_impl.h
diff --git a/content/renderer/media/mock_data_channel_impl.h b/content/renderer/media/mock_data_channel_impl.h
index 0b763dc77e627bdaf7f9336ed525bcd288ffd4b2..fa43ba7b46a848b147d1cf9afbac9de16a573347 100644
--- a/content/renderer/media/mock_data_channel_impl.h
+++ b/content/renderer/media/mock_data_channel_impl.h
@@ -30,6 +30,10 @@ class MockDataChannel : public webrtc::DataChannelInterface {
bool negotiated() const override;
int id() const override;
DataState state() const override;
+ uint32_t messages_sent() const override;
+ uint64_t bytes_sent() const override;
+ uint32_t messages_received() const override;
+ uint64_t bytes_received() const override;
uint64_t buffered_amount() const override;
void Close() override;
bool Send(const webrtc::DataBuffer& buffer) override;
« no previous file with comments | « no previous file | content/renderer/media/mock_data_channel_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698