| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import "chrome/browser/ui/cocoa/tabs/tab_window_controller.h" | 5 #import "chrome/browser/ui/cocoa/tabs/tab_window_controller.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #import "chrome/browser/ui/cocoa/focus_tracker.h" | |
| 9 #import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h" | 8 #import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h" |
| 10 #import "chrome/browser/ui/cocoa/themed_window.h" | 9 #import "chrome/browser/ui/cocoa/themed_window.h" |
| 10 #import "ui/base/cocoa/focus_tracker.h" |
| 11 #include "ui/base/theme_provider.h" | 11 #include "ui/base/theme_provider.h" |
| 12 | 12 |
| 13 @interface TabWindowController(PRIVATE) | 13 @interface TabWindowController(PRIVATE) |
| 14 - (void)setUseOverlay:(BOOL)useOverlay; | 14 - (void)setUseOverlay:(BOOL)useOverlay; |
| 15 @end | 15 @end |
| 16 | 16 |
| 17 @interface TabWindowOverlayWindow : NSWindow | 17 @interface TabWindowOverlayWindow : NSWindow |
| 18 @end | 18 @end |
| 19 | 19 |
| 20 @implementation TabWindowOverlayWindow | 20 @implementation TabWindowOverlayWindow |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 closeDeferred_ = YES; | 287 closeDeferred_ = YES; |
| 288 } | 288 } |
| 289 | 289 |
| 290 // Called when the size of the window content area has changed. Override to | 290 // Called when the size of the window content area has changed. Override to |
| 291 // position specific views. Base class implementation does nothing. | 291 // position specific views. Base class implementation does nothing. |
| 292 - (void)layoutSubviews { | 292 - (void)layoutSubviews { |
| 293 NOTIMPLEMENTED(); | 293 NOTIMPLEMENTED(); |
| 294 } | 294 } |
| 295 | 295 |
| 296 @end | 296 @end |
| OLD | NEW |