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

Unified Diff: chrome/browser/cocoa/tab_strip_controller.h

Issue 3547008: Handle resize corner layout entirely in the platform BrowserWindow*/BrowserView* code... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 | « chrome/browser/cocoa/tab_contents_controller.mm ('k') | chrome/browser/cocoa/tab_strip_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/tab_strip_controller.h
===================================================================
--- chrome/browser/cocoa/tab_strip_controller.h (revision 66034)
+++ chrome/browser/cocoa/tab_strip_controller.h (working copy)
@@ -10,6 +10,7 @@
#include "base/scoped_nsobject.h"
#include "base/scoped_ptr.h"
+#import "chrome/browser/cocoa/tab_contents_controller.h"
#import "chrome/browser/cocoa/tab_controller_target.h"
#import "chrome/browser/cocoa/url_drop_target.h"
#import "third_party/GTM/AppKit/GTMWindowSheetController.h"
@@ -26,12 +27,10 @@
class TabContents;
class ToolbarModel;
-// The interface for the tab strip controller's delegate. Currently, the
-// delegate is the BWC and is responsible for subviews layout and forwarding
-// these events to InfoBarContainerController.
-// Delegating TabStripModelObserverBridge's events (in lieu of subscrining
-// BWC and InfoBarContainerController to TabStripModelObserverBridge events)
-// is necessary to guarantee a proper order of subviews layout updates,
+// The interface for the tab strip controller's delegate.
+// Delegating TabStripModelObserverBridge's events (in lieu of directly
+// subscribing to TabStripModelObserverBridge events, as TabStripController
+// does) is necessary to guarantee a proper order of subviews layout updates,
// otherwise it might trigger unnesessary content relayout, UI flickering etc.
@protocol TabStripControllerDelegate
@@ -59,7 +58,8 @@
@interface TabStripController :
NSObject<TabControllerTarget,
URLDropTargetController,
- GTMWindowSheetControllerDelegate> {
+ GTMWindowSheetControllerDelegate,
+ TabContentsControllerDelegate> {
@protected
// YES if tabs are to be laid out vertically instead of horizontally.
BOOL verticalLayout_;
« no previous file with comments | « chrome/browser/cocoa/tab_contents_controller.mm ('k') | chrome/browser/cocoa/tab_strip_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698