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

Unified Diff: chrome/test/data/webui/net_internals/dns_view.js

Issue 9197009: Adds custom ttl argument to HostCache::Set. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 8 years, 11 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
Index: chrome/test/data/webui/net_internals/dns_view.js
diff --git a/chrome/test/data/webui/net_internals/dns_view.js b/chrome/test/data/webui/net_internals/dns_view.js
index 12fabb9fc835cfd1569a14e6c4253b79bacdbca3..aae881efb337c2f71533b6e0e563017e3ba306ec 100644
--- a/chrome/test/data/webui/net_internals/dns_view.js
+++ b/chrome/test/data/webui/net_internals/dns_view.js
@@ -22,10 +22,6 @@ function checkDisplay(hostResolverInfo) {
expectEquals(hostResolverInfo.cache.capacity,
parseInt($(DnsView.CAPACITY_SPAN_ID).innerText));
- expectEquals(hostResolverInfo.cache.ttl_success_ms,
- parseInt($(DnsView.TTL_SUCCESS_SPAN_ID).innerText));
- expectEquals(hostResolverInfo.cache.ttl_failure_ms,
- parseInt($(DnsView.TTL_FAILURE_SPAN_ID).innerText));
var entries = hostResolverInfo.cache.entries;

Powered by Google App Engine
This is Rietveld 408576698