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

Unified Diff: chrome/browser/memory_details.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/instant/instant_loader.cc ('k') | chrome/browser/omnibox_search_hint.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/memory_details.cc
===================================================================
--- chrome/browser/memory_details.cc (revision 115900)
+++ chrome/browser/memory_details.cc (working copy)
@@ -35,6 +35,7 @@
#endif
using content::BrowserThread;
+using content::NavigationEntry;
// static
std::string ProcessMemoryInformation::GetRendererTypeNameInEnglish(
@@ -284,9 +285,9 @@
// last committed entry.
//
// Either the pending or last committed entries can be NULL.
- const content::NavigationEntry* pending_entry =
+ const NavigationEntry* pending_entry =
contents->GetController().GetPendingEntry();
- const content::NavigationEntry* last_committed_entry =
+ const NavigationEntry* last_committed_entry =
contents->GetController().GetLastCommittedEntry();
if ((last_committed_entry &&
LowerCaseEqualsASCII(last_committed_entry->GetVirtualURL().spec(),
« no previous file with comments | « chrome/browser/instant/instant_loader.cc ('k') | chrome/browser/omnibox_search_hint.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698