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

Side by Side Diff: chrome/browser/ui/cocoa/tabs/tab_window_controller.mm

Issue 9309042: Move FocusTracker to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/cocoa/focus_tracker_unittest.mm ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/focus_tracker_unittest.mm ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698