diff options
Diffstat (limited to 'chrome/browser/browser_window_factory.mm')
-rw-r--r-- | chrome/browser/browser_window_factory.mm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chrome/browser/browser_window_factory.mm b/chrome/browser/browser_window_factory.mm new file mode 100644 index 0000000..ea813be --- /dev/null +++ b/chrome/browser/browser_window_factory.mm @@ -0,0 +1,20 @@ +// Copyright (c) 2009 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. + +#include "chrome/browser/browser_window.h" +#include "chrome/browser/browser_window_controller.h" + +// Create the controller for the Browser, which handles loading the browser +// window from the nib. The controller takes ownership of |browser|. +// static +BrowserWindow* BrowserWindow::CreateBrowserWindow(Browser* browser) { + // TODO(pinkerton): figure out ownership model. If BrowserList keeps track + // of the browser windows, it will probably tell us when it needs to go + // away, and it seems we need to feed back to that when we get a + // performClose: from the UI. + BrowserWindowController* controller = + [[BrowserWindowController alloc] initWithBrowser:browser]; + return [controller browserWindow]; +} + |