diff options
Diffstat (limited to 'net/tools/gdig/file_net_log.cc')
-rw-r--r-- | net/tools/gdig/file_net_log.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tools/gdig/file_net_log.cc b/net/tools/gdig/file_net_log.cc index 90967de..51cf78d 100644 --- a/net/tools/gdig/file_net_log.cc +++ b/net/tools/gdig/file_net_log.cc @@ -26,7 +26,7 @@ FileNetLog::~FileNetLog() { void FileNetLog::OnAddEntry(const net::NetLog::Entry& entry) { // Only BoundNetLogs without a NetLog should have an invalid source. - DCHECK(entry.source().is_valid()); + DCHECK(entry.source().IsValid()); const char* source = SourceTypeToString(entry.source().type); const char* type = EventTypeToString(entry.type()); |