diff options
-rw-r--r-- | chrome/browser/browser_window_factory.mm | 8 |
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]; } |