Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(729)

Unified Diff: net/log/test_net_log_entry.cc

Issue 1138833003: Reduce frequency of IPv6 probes in HostResolverImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/log/test_net_log_entry.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « net/log/test_net_log_entry.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698