| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/views/frame/browser_view.h" | 5 #include "chrome/browser/views/frame/browser_view.h" |
| 6 | 6 |
| 7 #include "app/drag_drop_types.h" | 7 #include "app/drag_drop_types.h" |
| 8 #include "app/gfx/canvas.h" | 8 #include "app/gfx/canvas.h" |
| 9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
| 10 #include "app/os_exchange_data.h" | 10 #include "app/os_exchange_data.h" |
| 11 #include "app/resource_bundle.h" | 11 #include "app/resource_bundle.h" |
| (...skipping 1945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1957 | 1957 |
| 1958 // static | 1958 // static |
| 1959 FindBar* BrowserWindow::CreateFindBar(Browser* browser) { | 1959 FindBar* BrowserWindow::CreateFindBar(Browser* browser) { |
| 1960 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window())); | 1960 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window())); |
| 1961 } | 1961 } |
| 1962 | 1962 |
| 1963 // static | 1963 // static |
| 1964 void BrowserList::AllBrowsersClosed() { | 1964 void BrowserList::AllBrowsersClosed() { |
| 1965 views::Window::CloseAllSecondaryWindows(); | 1965 views::Window::CloseAllSecondaryWindows(); |
| 1966 } | 1966 } |
| OLD | NEW |