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

Unified Diff: chrome/browser/tab_contents/tab_contents.cc

Issue 111005: Bypass the cache for the second or later HttpCache::Transaction... Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 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 | net/base/load_states.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/tab_contents.cc
===================================================================
--- chrome/browser/tab_contents/tab_contents.cc (revision 17313)
+++ chrome/browser/tab_contents/tab_contents.cc (working copy)
@@ -568,9 +568,11 @@
case net::LOAD_STATE_WAITING_FOR_RESPONSE:
return l10n_util::GetStringF(IDS_LOAD_STATE_WAITING_FOR_RESPONSE,
load_state_host_);
- // Ignore net::LOAD_STATE_READING_RESPONSE and net::LOAD_STATE_IDLE
+ // Ignore net::LOAD_STATE_READING_RESPONSE, net::LOAD_STATE_IDLE and
+ // net::LOAD_STATE_NONE.
case net::LOAD_STATE_IDLE:
case net::LOAD_STATE_READING_RESPONSE:
+ case net::LOAD_STATE_WAITING_FOR_USER_ACTION:
break;
}
« no previous file with comments | « no previous file | net/base/load_states.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698