OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 10 matching lines...) Expand all Loading... |
21 #include "chrome/browser/automation/ui_controls.h" | 21 #include "chrome/browser/automation/ui_controls.h" |
22 #include "chrome/browser/bookmarks/bookmark_utils.h" | 22 #include "chrome/browser/bookmarks/bookmark_utils.h" |
23 #include "chrome/browser/browser.h" | 23 #include "chrome/browser/browser.h" |
24 #include "chrome/browser/browser_list.h" | 24 #include "chrome/browser/browser_list.h" |
25 #include "chrome/browser/browser_process.h" | 25 #include "chrome/browser/browser_process.h" |
26 #include "chrome/browser/debugger/devtools_window.h" | 26 #include "chrome/browser/debugger/devtools_window.h" |
27 #include "chrome/browser/dom_ui/bug_report_ui.h" | 27 #include "chrome/browser/dom_ui/bug_report_ui.h" |
28 #include "chrome/browser/download/download_manager.h" | 28 #include "chrome/browser/download/download_manager.h" |
29 #include "chrome/browser/ntp_background_util.h" | 29 #include "chrome/browser/ntp_background_util.h" |
30 #include "chrome/browser/page_info_window.h" | 30 #include "chrome/browser/page_info_window.h" |
31 #include "chrome/browser/pref_service.h" | 31 #include "chrome/browser/prefs/pref_service.h" |
32 #include "chrome/browser/profile.h" | 32 #include "chrome/browser/profile.h" |
33 #include "chrome/browser/sessions/tab_restore_service.h" | 33 #include "chrome/browser/sessions/tab_restore_service.h" |
34 #include "chrome/browser/sidebar/sidebar_container.h" | 34 #include "chrome/browser/sidebar/sidebar_container.h" |
35 #include "chrome/browser/sidebar/sidebar_manager.h" | 35 #include "chrome/browser/sidebar/sidebar_manager.h" |
36 #include "chrome/browser/tab_contents/match_preview.h" | 36 #include "chrome/browser/tab_contents/match_preview.h" |
37 #include "chrome/browser/tab_contents/tab_contents.h" | 37 #include "chrome/browser/tab_contents/tab_contents.h" |
38 #include "chrome/browser/tab_contents/tab_contents_view.h" | 38 #include "chrome/browser/tab_contents/tab_contents_view.h" |
39 #include "chrome/browser/themes/browser_theme_provider.h" | 39 #include "chrome/browser/themes/browser_theme_provider.h" |
40 #include "chrome/browser/view_ids.h" | 40 #include "chrome/browser/view_ids.h" |
41 #include "chrome/browser/views/accessible_view_helper.h" | 41 #include "chrome/browser/views/accessible_view_helper.h" |
(...skipping 2482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2524 SetAccessibleName(l10n_util::GetString(IDS_PRODUCT_NAME)); | 2524 SetAccessibleName(l10n_util::GetString(IDS_PRODUCT_NAME)); |
2525 | 2525 |
2526 return view; | 2526 return view; |
2527 } | 2527 } |
2528 #endif | 2528 #endif |
2529 | 2529 |
2530 // static | 2530 // static |
2531 FindBar* BrowserWindow::CreateFindBar(Browser* browser) { | 2531 FindBar* BrowserWindow::CreateFindBar(Browser* browser) { |
2532 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window())); | 2532 return browser::CreateFindBar(static_cast<BrowserView*>(browser->window())); |
2533 } | 2533 } |
OLD | NEW |