diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-10 23:13:56 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-10 23:13:56 +0000 |
commit | 6e76d8d105739f3b40274dd0247a75ea44e46a89 (patch) | |
tree | d3b8ba9605783f4ef28cfe2726b9c38b0e57eb23 /chrome/browser/resources | |
parent | 02e7a01ff83e7e6aa637809ca43cff5da5dbe1c0 (diff) | |
download | chromium_src-6e76d8d105739f3b40274dd0247a75ea44e46a89.zip chromium_src-6e76d8d105739f3b40274dd0247a75ea44e46a89.tar.gz chromium_src-6e76d8d105739f3b40274dd0247a75ea44e46a89.tar.bz2 |
Replace about:net-internals with the javascript-based frontend.
(DNS request tracing is the only feature lost in this transition; it needs to be added back under the new framework).
BUG=37421
Review URL: http://codereview.chromium.org/2008007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46868 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/net_internals/httpcacheview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/net_internals/httpcacheview.js b/chrome/browser/resources/net_internals/httpcacheview.js index 43b1e0a..809f66f 100644 --- a/chrome/browser/resources/net_internals/httpcacheview.js +++ b/chrome/browser/resources/net_internals/httpcacheview.js @@ -40,7 +40,7 @@ HttpCacheView.prototype.onHttpCacheInfoReceived = function(info) { var li = addNode(keysOl, 'li'); var a = addNode(li, 'a'); addTextNode(a, key); - a.href = 'chrome://net-internals/view-cache/' + key; + a.href = 'chrome://view-http-cache/' + key; a.target = '_blank'; } }; |