diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-15 15:13:49 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-15 15:13:49 +0000 |
commit | bff1f51a7aa9c3dd72711304b5f0f158de74d630 (patch) | |
tree | 0796aad39d2ca4b480c30249e6b709ffd38a5667 /chrome/browser/net/url_info.cc | |
parent | 30ec247e0d99a0b084a65ba63a5789b3037aa94d (diff) | |
download | chromium_src-bff1f51a7aa9c3dd72711304b5f0f158de74d630.zip chromium_src-bff1f51a7aa9c3dd72711304b5f0f158de74d630.tar.gz chromium_src-bff1f51a7aa9c3dd72711304b5f0f158de74d630.tar.bz2 |
Intercept navigations, not DNS resolutions, to predict startup
Transition from using a DNS observer, to using the
TCP/IP connection interceptor (which is used for
preconneciton and pre-resolution) to acquire the
list of hosts to resolve at startup.
BUG=42694
r=mbelshe
Review URL: http://codereview.chromium.org/3169006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56163 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/url_info.cc')
-rw-r--r-- | chrome/browser/net/url_info.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/net/url_info.cc b/chrome/browser/net/url_info.cc index a92f5a2..cd065de 100644 --- a/chrome/browser/net/url_info.cc +++ b/chrome/browser/net/url_info.cc @@ -293,7 +293,7 @@ void UrlInfo::GetHtmlTable(const UrlInfoTable host_infos, } output->append("</table>"); -#ifdef DEBUG +#ifndef NDEBUG StringAppendF(output, "Prefetch Queue Durations: min=%d, avg=%d, max=%d<br><br>", queue.minimum(), queue.average(), queue.maximum()); |