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/gtk/browser_window_gtk.h" | 5 #include "chrome/browser/gtk/browser_window_gtk.h" |
6 | 6 |
7 #include <gdk/gdkkeysyms.h> | 7 #include <gdk/gdkkeysyms.h> |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #include "chrome/browser/gtk/reload_button_gtk.h" | 57 #include "chrome/browser/gtk/reload_button_gtk.h" |
58 #include "chrome/browser/gtk/repost_form_warning_gtk.h" | 58 #include "chrome/browser/gtk/repost_form_warning_gtk.h" |
59 #include "chrome/browser/gtk/status_bubble_gtk.h" | 59 #include "chrome/browser/gtk/status_bubble_gtk.h" |
60 #include "chrome/browser/gtk/tab_contents_container_gtk.h" | 60 #include "chrome/browser/gtk/tab_contents_container_gtk.h" |
61 #include "chrome/browser/gtk/tabs/tab_strip_gtk.h" | 61 #include "chrome/browser/gtk/tabs/tab_strip_gtk.h" |
62 #include "chrome/browser/gtk/task_manager_gtk.h" | 62 #include "chrome/browser/gtk/task_manager_gtk.h" |
63 #include "chrome/browser/gtk/theme_install_bubble_view_gtk.h" | 63 #include "chrome/browser/gtk/theme_install_bubble_view_gtk.h" |
64 #include "chrome/browser/gtk/update_recommended_dialog.h" | 64 #include "chrome/browser/gtk/update_recommended_dialog.h" |
65 #include "chrome/browser/page_info_window.h" | 65 #include "chrome/browser/page_info_window.h" |
66 #include "chrome/browser/prefs/pref_service.h" | 66 #include "chrome/browser/prefs/pref_service.h" |
67 #include "chrome/browser/profile.h" | 67 #include "chrome/browser/profiles/profile.h" |
68 #include "chrome/browser/tab_contents/tab_contents.h" | 68 #include "chrome/browser/tab_contents/tab_contents.h" |
69 #include "chrome/browser/tab_contents/tab_contents_view.h" | 69 #include "chrome/browser/tab_contents/tab_contents_view.h" |
70 #include "chrome/browser/tabs/tab_strip_model.h" | 70 #include "chrome/browser/tabs/tab_strip_model.h" |
71 #include "chrome/browser/themes/browser_theme_provider.h" | 71 #include "chrome/browser/themes/browser_theme_provider.h" |
72 #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.h" | 72 #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.h" |
73 #include "chrome/browser/ui/browser.h" | 73 #include "chrome/browser/ui/browser.h" |
74 #include "chrome/browser/ui/find_bar/find_bar_controller.h" | 74 #include "chrome/browser/ui/find_bar/find_bar_controller.h" |
75 #include "chrome/browser/ui/omnibox/location_bar.h" | 75 #include "chrome/browser/ui/omnibox/location_bar.h" |
76 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 76 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
77 #include "chrome/browser/ui/window_sizer.h" | 77 #include "chrome/browser/ui/window_sizer.h" |
(...skipping 2155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2233 // special-case the ones where the custom frame should be used. These names | 2233 // special-case the ones where the custom frame should be used. These names |
2234 // are taken from the WMs' source code. | 2234 // are taken from the WMs' source code. |
2235 return (wm_name == "Blackbox" || | 2235 return (wm_name == "Blackbox" || |
2236 wm_name == "compiz" || | 2236 wm_name == "compiz" || |
2237 wm_name == "e16" || // Enlightenment DR16 | 2237 wm_name == "e16" || // Enlightenment DR16 |
2238 wm_name == "Metacity" || | 2238 wm_name == "Metacity" || |
2239 wm_name == "Mutter" || | 2239 wm_name == "Mutter" || |
2240 wm_name == "Openbox" || | 2240 wm_name == "Openbox" || |
2241 wm_name == "Xfwm4"); | 2241 wm_name == "Xfwm4"); |
2242 } | 2242 } |
OLD | NEW |