blob: 33d00707d83aeaf711c3edf6b8ae42c588324932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// 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 "base/logging.h"
#include "chrome/browser/browser_window.h"
#include "chrome/browser/cocoa/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];
}
// static
FindBar* BrowserWindow::CreateFindBar(Browser* browser_window) {
NOTIMPLEMENTED();
return NULL;
}
|