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

Side by Side Diff: chromecast/net/fake_stream_socket.cc

Issue 2525743002: Make URLRequestContext a MemoryDumpProvider (Abandoned) (Closed)
Patch Set: rebased to 7f3d142161b15869f6bea58ac43c5f52ce5834ac 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698