diff options
Diffstat (limited to 'chrome/browser/cocoa/tab_strip_controller.h')
-rw-r--r-- | chrome/browser/cocoa/tab_strip_controller.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/chrome/browser/cocoa/tab_strip_controller.h b/chrome/browser/cocoa/tab_strip_controller.h index 2321b7d..838c00a 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; |