| 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;
|
|
|