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

Unified Diff: chrome/browser/renderer_host/resource_queue.cc

Issue 2931005: Show offline interstitial page when offline and reload when reconnected to network. (Closed)
Patch Set: " Created 10 years, 5 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
Index: chrome/browser/renderer_host/resource_queue.cc
diff --git a/chrome/browser/renderer_host/resource_queue.cc b/chrome/browser/renderer_host/resource_queue.cc
index dca6bd2b7a289672a353646716db2209aa879004..73e96a24770fd44318bbaa33a6039951502394f3 100644
--- a/chrome/browser/renderer_host/resource_queue.cc
+++ b/chrome/browser/renderer_host/resource_queue.cc
@@ -45,7 +45,9 @@ void ResourceQueue::AddRequest(
GlobalRequestID request_id(request_info.child_id(),
request_info.request_id());
- DCHECK(!ContainsKey(requests_, request_id));
+ DCHECK(!ContainsKey(requests_, request_id))
+ << "child_id:" << request_info.child_id()
+ << ", request_id:" << request_info.request_id();
requests_[request_id] = request;
DelegateSet interested_delegates;
« no previous file with comments | « chrome/browser/renderer_host/resource_dispatcher_host.cc ('k') | chrome/browser/resources/offline_load.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698