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

Unified Diff: content/public/renderer/render_view_observer.cc

Issue 2498673002: RenderWidget: hoist synchronous IPC out of Init methods (attempt 2). (Closed)
Patch Set: Remove DCHECKS which rediscovered an old bug. Created 4 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
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/renderer/render_view_observer.cc
diff --git a/content/public/renderer/render_view_observer.cc b/content/public/renderer/render_view_observer.cc
index f90a8058cb44d8cc2a73b0169b7ec5b2f6fe9373..305fbd7d414bedfa7f6d56d699073166a873e626 100644
--- a/content/public/renderer/render_view_observer.cc
+++ b/content/public/renderer/render_view_observer.cc
@@ -14,7 +14,7 @@ RenderViewObserver::RenderViewObserver(RenderView* render_view)
// |render_view_| can be null on unit testing or if Observe() is used.
if (render_view_) {
routing_id_ = render_view_->GetRoutingID();
- // TODO(jam): bring this back DCHECK_NE(routing_id_, MSG_ROUTING_NONE);
+ // TODO(jam/nick): bring this back DCHECK_NE(routing_id_, MSG_ROUTING_NONE);
render_view_->AddObserver(this);
}
}
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698