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

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

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
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/applescript/tab_applescript.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/applescript/tab_applescript.h
diff --git a/chrome/browser/ui/cocoa/applescript/tab_applescript.h b/chrome/browser/ui/cocoa/applescript/tab_applescript.h
index dd319416f27c8ffb055299515d44ee363483329d..41a3fd5c0ced055aefdcd767bb5e038e8942956c 100644
--- a/chrome/browser/ui/cocoa/applescript/tab_applescript.h
+++ b/chrome/browser/ui/cocoa/applescript/tab_applescript.h
@@ -10,12 +10,11 @@
#import "chrome/browser/ui/cocoa/applescript/element_applescript.h"
class TabContents;
-typedef TabContents TabContentsWrapper;
// Represents a tab scriptable item in applescript.
@interface TabAppleScript : ElementAppleScript {
@private
- TabContentsWrapper* tabContents_; // weak.
+ TabContents* tabContents_; // weak.
// Contains the temporary URL when a user creates a new folder/item with
// url specified like
// |make new tab with properties {url:"http://google.com"}|.
@@ -28,10 +27,10 @@ typedef TabContents TabContentsWrapper;
- (id)init;
// Does not create a new tab but uses an existing one.
-- (id)initWithTabContent:(TabContentsWrapper*)aTabContent;
+- (id)initWithTabContent:(TabContents*)aTabContent;
// Assigns a tab, sets its unique ID and also copies temporary values.
-- (void)setTabContent:(TabContentsWrapper*)aTabContent;
+- (void)setTabContent:(TabContents*)aTabContent;
// Return the URL currently visible to the user in the location bar.
- (NSString*)URL;
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/applescript/tab_applescript.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698