summaryrefslogtreecommitdiffstats
path: root/net/base/net_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/net_log.h')
-rw-r--r--net/base/net_log.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/base/net_log.h b/net/base/net_log.h
index 603f081..b6492cd 100644
--- a/net/base/net_log.h
+++ b/net/base/net_log.h
@@ -70,8 +70,7 @@ class NetLog {
Source() : type(SOURCE_NONE), id(kInvalidId) {}
Source(SourceType type, uint32 id) : type(type), id(id) {}
- bool is_valid() const { return id != kInvalidId; }
- Value* ToValue() const;
+ bool is_valid() { return id != kInvalidId; }
SourceType type;
uint32 id;