diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-28 07:02:04 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-28 07:02:04 +0000 |
commit | ad23a09a27c2863e56810a849beca09cb5e2b6d8 (patch) | |
tree | c9527aeb0e9c0190f621011624ed0f4e7eecf035 /chrome/browser/memory_details.cc | |
parent | e18637fbd2e55fb610d92bc061f10a0629826377 (diff) | |
download | chromium_src-ad23a09a27c2863e56810a849beca09cb5e2b6d8.zip chromium_src-ad23a09a27c2863e56810a849beca09cb5e2b6d8.tar.gz chromium_src-ad23a09a27c2863e56810a849beca09cb5e2b6d8.tar.bz2 |
Convert a few methods in NavigationController to return a content::NavigationEntry, in preparation for creating an interface around NavigationController.
BUG=98716
TBR=joi
Review URL: http://codereview.chromium.org/9008034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115872 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/memory_details.cc')
-rw-r--r-- | chrome/browser/memory_details.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc index a7e75f8..c48a6c4 100644 --- a/chrome/browser/memory_details.cc +++ b/chrome/browser/memory_details.cc @@ -286,7 +286,7 @@ void MemoryDetails::CollectChildInfoOnUIThread() { // Either the pending or last committed entries can be NULL. const NavigationEntry* pending_entry = contents->GetController().pending_entry(); - const NavigationEntry* last_committed_entry = + const content::NavigationEntry* last_committed_entry = contents->GetController().GetLastCommittedEntry(); if ((last_committed_entry && LowerCaseEqualsASCII(last_committed_entry->GetVirtualURL().spec(), |