summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_handler_unittest.cc
diff options
context:
space:
mode:
authorvishal.b <vishal.b@samsung.com>2015-04-17 01:45:51 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-17 08:46:07 +0000
commit62985ca964bae26730280620d01a606eeff1d226 (patch)
tree52f6c9ad2f7b20990796d14687a5d0b79780baf7 /net/http/http_auth_handler_unittest.cc
parent817cf387dbb2b63fb8c00f0f9b1535a152d88b62 (diff)
downloadchromium_src-62985ca964bae26730280620d01a606eeff1d226.zip
chromium_src-62985ca964bae26730280620d01a606eeff1d226.tar.gz
chromium_src-62985ca964bae26730280620d01a606eeff1d226.tar.bz2
Rename NetLogLogger and CapturingNetLog
Renaming two classes CapturingNetLog --> TestNetLog NetLogLogger --> WriteToFileNetLogObserver BUG=473252 TBR=jam,mmenke Review URL: https://codereview.chromium.org/1084533002 Cr-Commit-Position: refs/heads/master@{#325611}
Diffstat (limited to 'net/http/http_auth_handler_unittest.cc')
-rw-r--r--net/http/http_auth_handler_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_auth_handler_unittest.cc b/net/http/http_auth_handler_unittest.cc
index 9f4a0a8..335bec3a 100644
--- a/net/http/http_auth_handler_unittest.cc
+++ b/net/http/http_auth_handler_unittest.cc
@@ -11,8 +11,8 @@
#include "net/http/http_auth_challenge_tokenizer.h"
#include "net/http/http_auth_handler_mock.h"
#include "net/http/http_request_info.h"
-#include "net/log/capturing_net_log.h"
#include "net/log/net_log_unittest.h"
+#include "net/log/test_net_log.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
@@ -38,7 +38,7 @@ TEST(HttpAuthHandlerTest, NetLog) {
HttpAuthChallengeTokenizer tokenizer(
challenge.begin(), challenge.end());
HttpAuthHandlerMock mock_handler;
- CapturingNetLog capturing_net_log;
+ TestNetLog capturing_net_log;
BoundNetLog bound_net_log(BoundNetLog::Make(&capturing_net_log,
net::NetLog::SOURCE_NONE));
@@ -50,7 +50,7 @@ TEST(HttpAuthHandlerTest, NetLog) {
if (async)
test_callback.WaitForResult();
- CapturingNetLog::CapturedEntryList entries;
+ TestNetLog::CapturedEntryList entries;
capturing_net_log.GetEntries(&entries);
EXPECT_EQ(2u, entries.size());