Chromium Code Reviews| Index: chrome/browser/ui/cocoa/layout_view.mm |
| diff --git a/chrome/browser/ui/cocoa/layout_view.mm b/chrome/browser/ui/cocoa/layout_view.mm |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7ec042540213aea6348d26c804fee108840b83fb |
| --- /dev/null |
| +++ b/chrome/browser/ui/cocoa/layout_view.mm |
| @@ -0,0 +1,33 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#import "chrome/browser/ui/cocoa/layout_view.h" |
| + |
| +#include "chrome/browser/ui/cocoa/simple_grid_layout.h" |
| + |
| +@implementation LayoutView |
| + |
| +- (void)setLayoutManager:(scoped_ptr<SimpleGridLayout>) layout { |
|
Robert Sesek
2013/05/02 20:16:46
nit: no space after )
groby-ooo-7-16
2013/05/03 04:31:46
Done.
|
| + layout_ = layout.Pass(); |
| +} |
| + |
| +- (SimpleGridLayout*)layoutManager { |
| + return layout_.get(); |
| +} |
| + |
| +- (void)resizeSubviewsWithOldSize:(NSSize)oldBoundsSize { |
| + [super resizeSubviewsWithOldSize:oldBoundsSize]; |
| + [self performLayout]; |
| +} |
| + |
| +- (void)performLayout { |
| + layout_->Layout(self); |
| +} |
| + |
| +- (CGFloat)preferredHeightForWidth:(CGFloat)width { |
| + return layout_->GetPreferredHeightForWidth(width); |
| +} |
| + |
| +@end |
| + |