| Index: chrome/browser/cocoa/tab_strip_controller.h
|
| diff --git a/chrome/browser/cocoa/tab_strip_controller.h b/chrome/browser/cocoa/tab_strip_controller.h
|
| index 2321b7d7c21dc27dbdf8214a7d7a7297828960df..838c00ae59aab83b502b1b3d6cbc3c47b918667a 100644
|
| --- a/chrome/browser/cocoa/tab_strip_controller.h
|
| +++ b/chrome/browser/cocoa/tab_strip_controller.h
|
| @@ -13,6 +13,7 @@
|
| #include "base/scoped_nsobject.h"
|
| #include "base/scoped_ptr.h"
|
| #import "chrome/browser/cocoa/tab_controller_target.h"
|
| +#import "chrome/browser/cocoa/url_drop_target.h"
|
| #import "third_party/GTM/AppKit/GTMWindowSheetController.h"
|
|
|
| @class TabView;
|
| @@ -38,6 +39,7 @@ class ToolbarModel;
|
|
|
| @interface TabStripController :
|
| NSObject<TabControllerTarget,
|
| + URLDropTargetController,
|
| GTMWindowSheetControllerDelegate> {
|
| @private
|
| TabContents* currentTab_; // weak, tab for which we're showing state
|
| @@ -177,13 +179,6 @@ class ToolbarModel;
|
| // Default height for tabs.
|
| + (CGFloat)defaultTabHeight;
|
|
|
| -// Effectively an implementation of the |URLDropTargetWindowController|
|
| -// protocol, which the |BrowserWindowController| just reflects to us. This
|
| -// needed for dropping URLs on the tab strip.
|
| -- (void)dropURLs:(NSArray*)urls at:(NSPoint)location;
|
| -- (void)indicateDropURLsAt:(NSPoint)location;
|
| -- (void)hideDropURLsIndicator;
|
| -
|
| // Returns the (lazily created) window sheet controller of this window. Used
|
| // for the per-tab sheets.
|
| - (GTMWindowSheetController*)sheetController;
|
|
|