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

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

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 | « content/renderer/media/mock_data_channel_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/mock_data_channel_impl.cc
diff --git a/content/renderer/media/mock_data_channel_impl.cc b/content/renderer/media/mock_data_channel_impl.cc
index 6477088bf5508e3d9354dd6d191379d20307f7ca..005ebf4a0f5f31e59358d25aca35e320a1508121 100644
--- a/content/renderer/media/mock_data_channel_impl.cc
+++ b/content/renderer/media/mock_data_channel_impl.cc
@@ -53,6 +53,26 @@ int MockDataChannel::id() const {
MockDataChannel::DataState MockDataChannel::state() const { return state_; }
+uint32_t MockDataChannel::messages_sent() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+uint64_t MockDataChannel::bytes_sent() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+uint32_t MockDataChannel::messages_received() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+uint64_t MockDataChannel::bytes_received() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
// For testing.
void MockDataChannel::changeState(DataState state) {
state_ = state;
« no previous file with comments | « content/renderer/media/mock_data_channel_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698