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

Unified Diff: content/browser/frame_host/navigation_handle_impl.cc

Issue 1478103002: [WIP] [service worker] Fix detach controller and fallback to network mechanism (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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: content/browser/frame_host/navigation_handle_impl.cc
diff --git a/content/browser/frame_host/navigation_handle_impl.cc b/content/browser/frame_host/navigation_handle_impl.cc
index 4fcb2c6c64bea036e556a0576ab29ad57f826ed3..6a2dea4a6379ed55e43af35ab9890657dd9adbcf 100644
--- a/content/browser/frame_host/navigation_handle_impl.cc
+++ b/content/browser/frame_host/navigation_handle_impl.cc
@@ -306,7 +306,7 @@ void NavigationHandleImpl::DidRedirectNavigation(const GURL& new_url) {
void NavigationHandleImpl::ReadyToCommitNavigation(
RenderFrameHostImpl* render_frame_host,
scoped_refptr<net::HttpResponseHeaders> response_headers) {
- DCHECK(!render_frame_host_);
+ // DCHECK(!render_frame_host_);
falken 2015/11/26 10:36:42 clamy: How bad is disabling this DCHECK?
render_frame_host_ = render_frame_host;
response_headers_ = response_headers;
state_ = READY_TO_COMMIT;

Powered by Google App Engine
This is Rietveld 408576698