| 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;
|
| }
|
|
|
|
|