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

Unified Diff: extensions/browser/api/cast_channel/cast_socket_unittest.cc

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 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: extensions/browser/api/cast_channel/cast_socket_unittest.cc
diff --git a/extensions/browser/api/cast_channel/cast_socket_unittest.cc b/extensions/browser/api/cast_channel/cast_socket_unittest.cc
index 08b18acf01a56c27b35bf7c3d68164d83f4ea61d..2201bf94daa2d9c28c0b83e24b1179b74ac12e6e 100644
--- a/extensions/browser/api/cast_channel/cast_socket_unittest.cc
+++ b/extensions/browser/api/cast_channel/cast_socket_unittest.cc
@@ -92,7 +92,7 @@ class MockTCPSocket : public net::TCPClientSocket {
: TCPClientSocket(net::AddressList(),
nullptr,
nullptr,
- net::NetLog::Source()),
+ net::NetLogSource()),
connect_data_(connect_data),
do_nothing_(false) {}
@@ -100,7 +100,7 @@ class MockTCPSocket : public net::TCPClientSocket {
: TCPClientSocket(net::AddressList(),
nullptr,
nullptr,
- net::NetLog::Source()) {
+ net::NetLogSource()) {
CHECK(do_nothing);
do_nothing_ = do_nothing;
}

Powered by Google App Engine
This is Rietveld 408576698