| Index: chrome/browser/ui/cocoa/tabs/tab_strip_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_controller.h b/chrome/browser/ui/cocoa/tabs/tab_strip_controller.h
|
| index fa1d28e830d097b34ccae90784bf75fcbe7c66b1..859e5971dab8300251ab33fd09e672232d804eb0 100644
|
| --- a/chrome/browser/ui/cocoa/tabs/tab_strip_controller.h
|
| +++ b/chrome/browser/ui/cocoa/tabs/tab_strip_controller.h
|
| @@ -140,9 +140,9 @@ class WebContents;
|
| // Helper for performing tab selection as a result of dragging over a tab.
|
| scoped_ptr<HoverTabSelector> hoverTabSelector_;
|
|
|
| - // A container view for the window controls, which must be manually added in
|
| - // fullscreen in 10.10+.
|
| - base::scoped_nsobject<NSView> fullscreenWindowControls_;
|
| + // A container view for custom traffic light buttons, which must be manually
|
| + // added in fullscreen in 10.10+.
|
| + base::scoped_nsobject<NSView> customWindowControls_;
|
| }
|
|
|
| @property(nonatomic) CGFloat leftIndentForControls;
|
| @@ -252,11 +252,11 @@ class WebContents;
|
| // Returns the currently active TabContentsController.
|
| - (TabContentsController*)activeTabContentsController;
|
|
|
| -// Adds traffic lights to the tab strip. Idempotent.
|
| -- (void)addWindowControls;
|
| +// Adds custom traffic light buttons to the tab strip. Idempotent.
|
| +- (void)addCustomWindowControls;
|
|
|
| -// Removes traffic lights from the tab strip. Idempotent.
|
| -- (void)removeWindowControls;
|
| +// Removes custom traffic light buttons from the tab strip. Idempotent.
|
| +- (void)removeCustomWindowControls;
|
|
|
| @end
|
|
|
|
|