| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-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 #if defined(OS_LINUX) | 7 #if defined(OS_LINUX) |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 #endif | 9 #endif |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "chrome/browser/browser_list.h" | 23 #include "chrome/browser/browser_list.h" |
| 24 #include "chrome/browser/browser_process.h" | 24 #include "chrome/browser/browser_process.h" |
| 25 #include "chrome/browser/browser_theme_provider.h" | 25 #include "chrome/browser/browser_theme_provider.h" |
| 26 #include "chrome/browser/debugger/devtools_window.h" | 26 #include "chrome/browser/debugger/devtools_window.h" |
| 27 #include "chrome/browser/download/download_manager.h" | 27 #include "chrome/browser/download/download_manager.h" |
| 28 #include "chrome/browser/find_bar.h" | 28 #include "chrome/browser/find_bar.h" |
| 29 #include "chrome/browser/find_bar_controller.h" | 29 #include "chrome/browser/find_bar_controller.h" |
| 30 #if defined(OS_WIN) | 30 #if defined(OS_WIN) |
| 31 #include "chrome/browser/jumplist.h" | 31 #include "chrome/browser/jumplist.h" |
| 32 #endif | 32 #endif |
| 33 #include "chrome/browser/page_info_window.h" |
| 33 #include "chrome/browser/profile.h" | 34 #include "chrome/browser/profile.h" |
| 34 #include "chrome/browser/view_ids.h" | 35 #include "chrome/browser/view_ids.h" |
| 35 #include "chrome/browser/views/bookmark_bar_view.h" | 36 #include "chrome/browser/views/bookmark_bar_view.h" |
| 36 #include "chrome/browser/views/browser_bubble.h" | 37 #include "chrome/browser/views/browser_bubble.h" |
| 37 #include "chrome/browser/views/browser_dialogs.h" | 38 #include "chrome/browser/views/browser_dialogs.h" |
| 38 #include "chrome/browser/views/chrome_views_delegate.h" | 39 #include "chrome/browser/views/chrome_views_delegate.h" |
| 39 #include "chrome/browser/views/download_shelf_view.h" | 40 #include "chrome/browser/views/download_shelf_view.h" |
| 40 #include "chrome/browser/views/extensions/extension_shelf.h" | 41 #include "chrome/browser/views/extensions/extension_shelf.h" |
| 41 #include "chrome/browser/views/frame/browser_frame.h" | 42 #include "chrome/browser/views/frame/browser_frame.h" |
| 42 #include "chrome/browser/views/fullscreen_exit_bubble.h" | 43 #include "chrome/browser/views/fullscreen_exit_bubble.h" |
| (...skipping 1900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1943 | 1944 |
| 1944 // static | 1945 // static |
| 1945 FindBar* BrowserWindow::CreateFindBar(Browser* browser) { | 1946 FindBar* BrowserWindow::CreateFindBar(Browser* browser) { |
| 1946 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window())); | 1947 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window())); |
| 1947 } | 1948 } |
| 1948 | 1949 |
| 1949 // static | 1950 // static |
| 1950 void BrowserList::AllBrowsersClosed() { | 1951 void BrowserList::AllBrowsersClosed() { |
| 1951 views::Window::CloseAllSecondaryWindows(); | 1952 views::Window::CloseAllSecondaryWindows(); |
| 1952 } | 1953 } |
| OLD | NEW |