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

Unified Diff: chrome/browser/tab_contents/render_view_context_menu.cc

Issue 8956059: Rename NavigationController to NavigationControllerImpl and put it into the content namespace. Al... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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 | « chrome/browser/sync/glue/session_model_associator.cc ('k') | chrome/browser/tabs/pinned_tab_codec.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/render_view_context_menu.cc
===================================================================
--- chrome/browser/tab_contents/render_view_context_menu.cc (revision 115900)
+++ chrome/browser/tab_contents/render_view_context_menu.cc (working copy)
@@ -88,6 +88,7 @@
#endif
using content::DownloadManager;
+using content::NavigationEntry;
using content::OpenURLParams;
using content::SSLStatus;
using content::UserMetricsAction;
@@ -1196,7 +1197,7 @@
// the page) from the NavigationEntry because its reflects their origin
// rather than the display one (returned by GetURL) which may be
// different (like having "view-source:" on the front).
- content::NavigationEntry* active_entry =
+ NavigationEntry* active_entry =
source_tab_contents_->GetController().GetActiveEntry();
return SavePackage::IsSavableURL(
(active_entry) ? active_entry->GetURL() : GURL());
@@ -1567,7 +1568,7 @@
break;
case IDC_CONTENT_CONTEXT_VIEWPAGEINFO: {
- content::NavigationEntry* nav_entry =
+ NavigationEntry* nav_entry =
source_tab_contents_->GetController().GetActiveEntry();
source_tab_contents_->ShowPageInfo(nav_entry->GetURL(),
nav_entry->GetSSL(), true);
« no previous file with comments | « chrome/browser/sync/glue/session_model_associator.cc ('k') | chrome/browser/tabs/pinned_tab_codec.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698