| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chromecast/net/fake_stream_socket.h" | 5 #include "chromecast/net/fake_stream_socket.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cstring> | 8 #include <cstring> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 173 |
| 174 void FakeStreamSocket::ClearConnectionAttempts() {} | 174 void FakeStreamSocket::ClearConnectionAttempts() {} |
| 175 | 175 |
| 176 void FakeStreamSocket::AddConnectionAttempts( | 176 void FakeStreamSocket::AddConnectionAttempts( |
| 177 const net::ConnectionAttempts& /* attempts */) {} | 177 const net::ConnectionAttempts& /* attempts */) {} |
| 178 | 178 |
| 179 int64_t FakeStreamSocket::GetTotalReceivedBytes() const { | 179 int64_t FakeStreamSocket::GetTotalReceivedBytes() const { |
| 180 return 0; | 180 return 0; |
| 181 } | 181 } |
| 182 | 182 |
| 183 void FakeStreamSocket::DumpMemoryStats( |
| 184 base::trace_event::MemoryAllocatorDump* dump) const {} |
| 185 |
| 183 } // namespace chromecast | 186 } // namespace chromecast |
| OLD | NEW |