Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / tab_contents / overlayable_contents_controller.mm
blobd3bf3a71d2f5c192403e18e1ee73968244660db9
1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #import "chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h"
7 @implementation OverlayableContentsController
9 - (id)init {
10   if ((self = [super init])) {
11     base::scoped_nsobject<NSView> view(
12         [[NSView alloc] initWithFrame:NSZeroRect]);
13     [view setAutoresizingMask:NSViewHeightSizable | NSViewWidthSizable];
14     [self setView:view];
16     activeContainer_.reset([[NSView alloc] initWithFrame:NSZeroRect]);
17     [activeContainer_ setAutoresizingMask:NSViewHeightSizable |
18                                           NSViewWidthSizable];
19     [view addSubview:activeContainer_];
20   }
21   return self;
24 - (NSView*)activeContainer {
25   return activeContainer_.get();
28 @end