| Index: chrome/browser/ui/cocoa/autofill/layout_view.mm
|
| diff --git a/chrome/browser/ui/cocoa/autofill/layout_view.mm b/chrome/browser/ui/cocoa/autofill/layout_view.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..04881e2ccec1dda453461935c3176e2c7d8df19f
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/cocoa/autofill/layout_view.mm
|
| @@ -0,0 +1,32 @@
|
| +// 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/autofill/layout_view.h"
|
| +
|
| +#include "chrome/browser/ui/cocoa/autofill/simple_grid_layout.h"
|
| +
|
| +@implementation LayoutView
|
| +
|
| +- (void)setLayoutManager:(scoped_ptr<SimpleGridLayout>)layout {
|
| + 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
|
|
|