Index: chrome/test/base/ui_test_utils.cc |
=================================================================== |
--- chrome/test/base/ui_test_utils.cc (revision 115900) |
+++ chrome/test/base/ui_test_utils.cc (working copy) |
@@ -68,6 +68,7 @@ |
#include "ui/aura/root_window.h" |
#endif |
+using content::NavigationEntry; |
using content::OpenURLParams; |
using content::Referrer; |
using content::WebContents; |
@@ -306,8 +307,7 @@ |
TabContents* tab_contents = browser->GetSelectedTabContents(); |
if (!tab_contents) |
return false; |
- content::NavigationEntry* last_entry = |
- tab_contents->GetController().GetActiveEntry(); |
+ NavigationEntry* last_entry = tab_contents->GetController().GetActiveEntry(); |
if (!last_entry) |
return false; |
title->assign(last_entry->GetTitleForDisplay("")); |