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

Unified Diff: chrome/browser/browser_about_handler.cc

Issue 2008007: Replace about:net-internals with the javascript-based frontend.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: improve a comment Created 10 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 | « no previous file | chrome/browser/dom_ui/chrome_url_data_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_about_handler.cc
===================================================================
--- chrome/browser/browser_about_handler.cc (revision 46824)
+++ chrome/browser/browser_about_handler.cc (working copy)
@@ -910,10 +910,9 @@
if (LowerCaseEqualsASCII(url->spec(), chrome::kAboutBlankURL))
return false;
- // Rewrite about:cache/* URLs to chrome://net-internals/view-cache/*
+ // Rewrite about:cache/* URLs to chrome://view-http-cache/*
if (StartsWithAboutSpecifier(*url, chrome::kAboutCacheURL)) {
- *url = RemapAboutURL(chrome::kNetworkViewCacheURL + std::string("/"),
- *url);
+ *url = RemapAboutURL(chrome::kNetworkViewCacheURL, *url);
return true;
}
« no previous file with comments | « no previous file | chrome/browser/dom_ui/chrome_url_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698