summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 21:54:26 +0000
committerjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 21:54:26 +0000
commitee941fe58d0fcf4a71cf6728d621b2c3d84ac72b (patch)
tree04ea1b369dd2dd1c2faee8bdb81d077b509a9aa2 /chrome
parentf1b89ad6ccf85e93ef3c0886e04e6990f4bcab29 (diff)
downloadchromium_src-ee941fe58d0fcf4a71cf6728d621b2c3d84ac72b.zip
chromium_src-ee941fe58d0fcf4a71cf6728d621b2c3d84ac72b.tar.gz
chromium_src-ee941fe58d0fcf4a71cf6728d621b2c3d84ac72b.tar.bz2
Update header ref to new location.
Review URL: http://codereview.chromium.org/27063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10215 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/browser_window_factory.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/browser_window_factory.mm b/chrome/browser/browser_window_factory.mm
index ea813be..fe11284 100644
--- a/chrome/browser/browser_window_factory.mm
+++ b/chrome/browser/browser_window_factory.mm
@@ -3,17 +3,17 @@
// found in the LICENSE file.
#include "chrome/browser/browser_window.h"
-#include "chrome/browser/browser_window_controller.h"
+#include "chrome/browser/cocoa/browser_window_controller.h"
-// Create the controller for the Browser, which handles loading the browser
+// 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
+ // away, and it seems we need to feed back to that when we get a
// performClose: from the UI.
- BrowserWindowController* controller =
+ BrowserWindowController* controller =
[[BrowserWindowController alloc] initWithBrowser:browser];
return [controller browserWindow];
}