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

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

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 5 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
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/fast_resize_view.h" 8 #import "chrome/browser/ui/cocoa/fast_resize_view.h"
9 #import "chrome/browser/ui/cocoa/framed_browser_window.h" 9 #import "chrome/browser/ui/cocoa/framed_browser_window.h"
10 #import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h" 10 #import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h"
(...skipping 27 matching lines...) Expand all
38 return [[[self parentWindow] windowController] themePatternPhase]; 38 return [[[self parentWindow] windowController] themePatternPhase];
39 return NSZeroPoint; 39 return NSZeroPoint;
40 } 40 }
41 41
42 @end 42 @end
43 43
44 @implementation TabWindowController 44 @implementation TabWindowController
45 45
46 - (id)initTabWindowControllerWithTabStrip:(BOOL)hasTabStrip { 46 - (id)initTabWindowControllerWithTabStrip:(BOOL)hasTabStrip {
47 NSRect contentRect = NSMakeRect(60, 229, 750, 600); 47 NSRect contentRect = NSMakeRect(60, 229, 750, 600);
48 scoped_nsobject<FramedBrowserWindow> window( 48 base::scoped_nsobject<FramedBrowserWindow> window(
49 [[FramedBrowserWindow alloc] initWithContentRect:contentRect 49 [[FramedBrowserWindow alloc] initWithContentRect:contentRect
50 hasTabStrip:hasTabStrip]); 50 hasTabStrip:hasTabStrip]);
51 [window setReleasedWhenClosed:YES]; 51 [window setReleasedWhenClosed:YES];
52 [window setAutorecalculatesKeyViewLoop:YES]; 52 [window setAutorecalculatesKeyViewLoop:YES];
53 53
54 if ((self = [super initWithWindow:window])) { 54 if ((self = [super initWithWindow:window])) {
55 [[self window] setDelegate:self]; 55 [[self window] setDelegate:self];
56 56
57 tabContentArea_.reset([[FastResizeView alloc] initWithFrame: 57 tabContentArea_.reset([[FastResizeView alloc] initWithFrame:
58 NSMakeRect(0, 0, 750, 600)]); 58 NSMakeRect(0, 0, 750, 600)]);
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 closeDeferred_ = YES; 283 closeDeferred_ = YES;
284 } 284 }
285 285
286 // Called when the size of the window content area has changed. Override to 286 // Called when the size of the window content area has changed. Override to
287 // position specific views. Base class implementation does nothing. 287 // position specific views. Base class implementation does nothing.
288 - (void)layoutSubviews { 288 - (void)layoutSubviews {
289 NOTIMPLEMENTED(); 289 NOTIMPLEMENTED();
290 } 290 }
291 291
292 @end 292 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698