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

Unified Diff: content/browser/tab_contents/navigation_controller_impl.cc

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 8 years, 10 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: content/browser/tab_contents/navigation_controller_impl.cc
diff --git a/content/browser/tab_contents/navigation_controller_impl.cc b/content/browser/tab_contents/navigation_controller_impl.cc
index 5cdd8cceef9f8cdf2365b557bee42ce558228b1e..fbc0427273d92d764fcedfa6cfbbbb3529401752 100644
--- a/content/browser/tab_contents/navigation_controller_impl.cc
+++ b/content/browser/tab_contents/navigation_controller_impl.cc
@@ -782,7 +782,9 @@ content::NavigationType NavigationControllerImpl::ClassifyNavigation(
temp.append(",");
}
GURL url(temp);
- tab_contents_->GetRenderViewHost()->Send(new ViewMsg_TempCrashWithData(url));
+ static_cast<RenderViewHostImpl*>(
+ tab_contents_->GetRenderViewHost())->Send(
+ new ViewMsg_TempCrashWithData(url));
return content::NAVIGATION_TYPE_NAV_IGNORE;
}
NavigationEntryImpl* existing_entry = entries_[existing_entry_index].get();
« no previous file with comments | « content/browser/tab_contents/interstitial_page_impl.cc ('k') | content/browser/tab_contents/popup_menu_helper_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698