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

Unified Diff: chrome/browser/ui/cocoa/applescript/tab_applescript.mm

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
Index: chrome/browser/ui/cocoa/applescript/tab_applescript.mm
===================================================================
--- chrome/browser/ui/cocoa/applescript/tab_applescript.mm (revision 115900)
+++ chrome/browser/ui/cocoa/applescript/tab_applescript.mm (working copy)
@@ -26,6 +26,7 @@
#include "content/public/browser/web_contents_delegate.h"
#include "googleurl/src/gurl.h"
+using content::NavigationEntry;
using content::OpenURLParams;
using content::Referrer;
@@ -189,7 +190,7 @@
return nil;
}
- content::NavigationEntry* entry =
+ NavigationEntry* entry =
tabContents_->tab_contents()->GetController().GetActiveEntry();
if (!entry) {
return nil;
@@ -213,7 +214,7 @@
return;
}
- content::NavigationEntry* entry =
+ NavigationEntry* entry =
tabContents_->tab_contents()->GetController().GetActiveEntry();
if (!entry)
return;
@@ -228,7 +229,7 @@
}
- (NSString*)title {
- content::NavigationEntry* entry =
+ NavigationEntry* entry =
tabContents_->tab_contents()->GetController().GetActiveEntry();
if (!entry)
return nil;
@@ -390,7 +391,7 @@
}
- (void)handlesViewSourceScriptCommand:(NSScriptCommand*)command {
- content::NavigationEntry* entry =
+ NavigationEntry* entry =
tabContents_->tab_contents()->GetController().GetLastCommittedEntry();
if (entry) {
tabContents_->tab_contents()->OpenURL(OpenURLParams(
« no previous file with comments | « chrome/browser/ui/browser_browsertest.cc ('k') | chrome/browser/ui/cocoa/location_bar/location_icon_decoration.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698