Index: chrome/browser/infobars/infobar_delegate.cc |
=================================================================== |
--- chrome/browser/infobars/infobar_delegate.cc (revision 115900) |
+++ chrome/browser/infobars/infobar_delegate.cc (working copy) |
@@ -11,6 +11,8 @@ |
#include "content/public/browser/navigation_entry.h" |
#include "content/public/browser/web_contents.h" |
+using content::NavigationEntry; |
+ |
// InfoBarDelegate ------------------------------------------------------------ |
InfoBarDelegate::~InfoBarDelegate() { |
@@ -83,7 +85,7 @@ |
void InfoBarDelegate::StoreActiveEntryUniqueID( |
InfoBarTabHelper* infobar_helper) { |
- content::NavigationEntry* active_entry = |
+ NavigationEntry* active_entry = |
infobar_helper->web_contents()->GetController().GetActiveEntry(); |
contents_unique_id_ = active_entry ? active_entry->GetUniqueID() : 0; |
} |