summaryrefslogtreecommitdiffstats
path: root/content/shell/browser/shell_net_log.h
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 /content/shell/browser/shell_net_log.h
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 'content/shell/browser/shell_net_log.h')
-rw-r--r--content/shell/browser/shell_net_log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/shell/browser/shell_net_log.h b/content/shell/browser/shell_net_log.h
index d7e8cf4..8a74e3d 100644
--- a/content/shell/browser/shell_net_log.h
+++ b/content/shell/browser/shell_net_log.h
@@ -8,7 +8,7 @@
#include <string>
#include "base/memory/scoped_ptr.h"
-#include "net/log/net_log_logger.h"
+#include "net/log/write_to_file_net_log_observer.h"
namespace content {
@@ -18,7 +18,7 @@ class ShellNetLog : public net::NetLog {
~ShellNetLog() override;
private:
- scoped_ptr<net::NetLogLogger> net_log_logger_;
+ scoped_ptr<net::WriteToFileNetLogObserver> net_log_logger_;
DISALLOW_COPY_AND_ASSIGN(ShellNetLog);
};