Index: net/log/test_net_log_entry.cc |
diff --git a/net/log/test_net_log_entry.cc b/net/log/test_net_log_entry.cc |
index d22515f180c917aa27a9c3af2aa7ddbdaa9371a2..948693b8f75478d211668aa6d35d2868245d3c6a 100644 |
--- a/net/log/test_net_log_entry.cc |
+++ b/net/log/test_net_log_entry.cc |
@@ -54,6 +54,13 @@ bool TestNetLogEntry::GetIntegerValue(const std::string& name, |
return params->GetInteger(name, value); |
} |
+bool TestNetLogEntry::GetBooleanValue(const std::string& name, |
+ bool* value) const { |
+ if (!params) |
+ return false; |
+ return params->GetBoolean(name, value); |
+} |
+ |
bool TestNetLogEntry::GetListValue(const std::string& name, |
base::ListValue** value) const { |
if (!params) |