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

Unified Diff: google_apis/gcm/base/socket_stream_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: google_apis/gcm/base/socket_stream_unittest.cc
diff --git a/google_apis/gcm/base/socket_stream_unittest.cc b/google_apis/gcm/base/socket_stream_unittest.cc
index 78299acf1e8b55031afc125dc7fa5ced3b01d59c..d82ebb05614dc767335747e055c254bbea2aabd5 100644
--- a/google_apis/gcm/base/socket_stream_unittest.cc
+++ b/google_apis/gcm/base/socket_stream_unittest.cc
@@ -13,6 +13,7 @@
#include "base/run_loop.h"
#include "base/strings/string_piece.h"
#include "net/base/ip_address.h"
+#include "net/log/net_log_source.h"
#include "net/socket/socket_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -176,7 +177,7 @@ void GCMSocketStreamTest::WaitForData(int msg_size) {
void GCMSocketStreamTest::OpenConnection() {
socket_ = socket_factory_.CreateTransportClientSocket(
- address_list_, NULL, NULL, net::NetLog::Source());
+ address_list_, NULL, NULL, net::NetLogSource());
socket_->Connect(
base::Bind(&GCMSocketStreamTest::ConnectCallback,
base::Unretained(this)));

Powered by Google App Engine
This is Rietveld 408576698