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

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

Issue 10534093: TabContentsWrapper -> TabContents, part 37. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months 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
diff --git a/chrome/browser/ui/cocoa/applescript/tab_applescript.mm b/chrome/browser/ui/cocoa/applescript/tab_applescript.mm
index 7da5e6616f8e023eaacb37df7155420e6c898576..5d7e98c9953edde8a34de3912561fad2ba973453 100644
--- a/chrome/browser/ui/cocoa/applescript/tab_applescript.mm
+++ b/chrome/browser/ui/cocoa/applescript/tab_applescript.mm
@@ -16,7 +16,7 @@
#include "chrome/browser/sessions/restore_tab_helper.h"
#include "chrome/browser/sessions/session_id.h"
#include "chrome/browser/ui/cocoa/applescript/error_applescript.h"
-#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
+#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
@@ -154,7 +154,7 @@ static NSAppleEventDescriptor* valueToDescriptor(Value* value) {
[super dealloc];
}
-- (id)initWithTabContent:(TabContentsWrapper*)aTabContent {
+- (id)initWithTabContent:(TabContents*)aTabContent {
if (!aTabContent) {
[self release];
return nil;
@@ -173,7 +173,7 @@ static NSAppleEventDescriptor* valueToDescriptor(Value* value) {
return self;
}
-- (void)setTabContent:(TabContentsWrapper*)aTabContent {
+- (void)setTabContent:(TabContents*)aTabContent {
DCHECK(aTabContent);
// It is safe to be weak, if a tab goes away (eg user closing a tab)
// the applescript runtime calls tabs in AppleScriptWindow and this
« no previous file with comments | « chrome/browser/ui/cocoa/applescript/tab_applescript.h ('k') | chrome/browser/ui/cocoa/applescript/window_applescript.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698