summaryrefslogtreecommitdiffstats
path: root/net/base/capturing_net_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/capturing_net_log.h')
-rw-r--r--net/base/capturing_net_log.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/net/base/capturing_net_log.h b/net/base/capturing_net_log.h
index 193d641..9254725 100644
--- a/net/base/capturing_net_log.h
+++ b/net/base/capturing_net_log.h
@@ -61,8 +61,6 @@ class CapturingNetLog : public NetLog {
void Clear();
- void SetLogLevel(NetLog::LogLevel log_level);
-
private:
// Needs to be "mutable" so can use it in GetEntries().
mutable Lock lock_;
@@ -73,8 +71,6 @@ class CapturingNetLog : public NetLog {
size_t max_num_entries_;
EntryList entries_;
- NetLog::LogLevel log_level_;
-
DISALLOW_COPY_AND_ASSIGN(CapturingNetLog);
};
@@ -101,9 +97,6 @@ class CapturingBoundNetLog {
void Clear();
- // Sets the log level of the underlying CapturingNetLog.
- void SetLogLevel(NetLog::LogLevel log_level);
-
private:
NetLog::Source source_;
scoped_ptr<CapturingNetLog> capturing_net_log_;