| OLD | NEW |
| 1 // Copyright (c) 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/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 #include <X11/XF86keysym.h> | 8 #include <X11/XF86keysym.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "app/gfx/color_utils.h" | 12 #include "app/gfx/color_utils.h" |
| 13 #include "app/gfx/gtk_util.h" |
| 13 #include "app/l10n_util.h" | 14 #include "app/l10n_util.h" |
| 14 #include "app/resource_bundle.h" | 15 #include "app/resource_bundle.h" |
| 15 #include "app/theme_provider.h" | 16 #include "app/theme_provider.h" |
| 16 #include "base/base_paths_linux.h" | 17 #include "base/base_paths_linux.h" |
| 17 #include "base/command_line.h" | 18 #include "base/command_line.h" |
| 18 #include "base/gfx/gtk_util.h" | |
| 19 #include "base/gfx/rect.h" | 19 #include "base/gfx/rect.h" |
| 20 #include "base/logging.h" | 20 #include "base/logging.h" |
| 21 #include "base/message_loop.h" | 21 #include "base/message_loop.h" |
| 22 #include "base/path_service.h" | 22 #include "base/path_service.h" |
| 23 #include "base/scoped_ptr.h" | 23 #include "base/scoped_ptr.h" |
| 24 #include "base/string_util.h" | 24 #include "base/string_util.h" |
| 25 #include "base/time.h" | 25 #include "base/time.h" |
| 26 #include "chrome/app/chrome_dll_resource.h" | 26 #include "chrome/app/chrome_dll_resource.h" |
| 27 #include "chrome/browser/app_modal_dialog_queue.h" | 27 #include "chrome/browser/app_modal_dialog_queue.h" |
| 28 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" | 28 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" |
| (...skipping 2234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2263 // are taken from the WMs' source code. | 2263 // are taken from the WMs' source code. |
| 2264 return (wm_name == "Blackbox" || | 2264 return (wm_name == "Blackbox" || |
| 2265 wm_name == "compiz" || | 2265 wm_name == "compiz" || |
| 2266 wm_name == "e16" || // Enlightenment DR16 | 2266 wm_name == "e16" || // Enlightenment DR16 |
| 2267 wm_name == "KWin" || | 2267 wm_name == "KWin" || |
| 2268 wm_name == "Metacity" || | 2268 wm_name == "Metacity" || |
| 2269 wm_name == "Mutter" || | 2269 wm_name == "Mutter" || |
| 2270 wm_name == "Openbox" || | 2270 wm_name == "Openbox" || |
| 2271 wm_name == "Xfwm4"); | 2271 wm_name == "Xfwm4"); |
| 2272 } | 2272 } |
| OLD | NEW |