Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: chrome/browser/gtk/browser_window_gtk.cc

Issue 3145001: FBTF: Clean up task.h in x11_util.h and header usage in some delegates. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: more Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
11 #include "app/gtk_util.h" 11 #include "app/gtk_util.h"
12 #include "app/l10n_util.h" 12 #include "app/l10n_util.h"
13 #include "base/base_paths.h" 13 #include "base/base_paths.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/keyboard_codes.h" 15 #include "base/keyboard_codes.h"
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/message_loop.h" 17 #include "base/message_loop.h"
18 #include "base/path_service.h" 18 #include "base/path_service.h"
19 #include "base/scoped_ptr.h" 19 #include "base/scoped_ptr.h"
20 #include "base/singleton.h" 20 #include "base/singleton.h"
21 #include "base/string_util.h" 21 #include "base/string_util.h"
22 #include "base/time.h" 22 #include "base/time.h"
23 #include "base/utf_string_conversions.h"
23 #include "chrome/app/chrome_dll_resource.h" 24 #include "chrome/app/chrome_dll_resource.h"
24 #include "chrome/browser/app_modal_dialog_queue.h" 25 #include "chrome/browser/app_modal_dialog_queue.h"
25 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" 26 #include "chrome/browser/autocomplete/autocomplete_edit_view.h"
26 #include "chrome/browser/bookmarks/bookmark_utils.h" 27 #include "chrome/browser/bookmarks/bookmark_utils.h"
27 #include "chrome/browser/browser.h" 28 #include "chrome/browser/browser.h"
28 #include "chrome/browser/browser_list.h" 29 #include "chrome/browser/browser_list.h"
29 #include "chrome/browser/browser_process.h" 30 #include "chrome/browser/browser_process.h"
30 #include "chrome/browser/browser_theme_provider.h" 31 #include "chrome/browser/browser_theme_provider.h"
31 #include "chrome/browser/debugger/devtools_window.h" 32 #include "chrome/browser/debugger/devtools_window.h"
32 #include "chrome/browser/download/download_item_model.h" 33 #include "chrome/browser/download/download_item_model.h"
(...skipping 2134 matching lines...) Expand 10 before | Expand all | Expand 10 after
2167 // special-case the ones where the custom frame should be used. These names 2168 // special-case the ones where the custom frame should be used. These names
2168 // are taken from the WMs' source code. 2169 // are taken from the WMs' source code.
2169 return (wm_name == "Blackbox" || 2170 return (wm_name == "Blackbox" ||
2170 wm_name == "compiz" || 2171 wm_name == "compiz" ||
2171 wm_name == "e16" || // Enlightenment DR16 2172 wm_name == "e16" || // Enlightenment DR16
2172 wm_name == "Metacity" || 2173 wm_name == "Metacity" ||
2173 wm_name == "Mutter" || 2174 wm_name == "Mutter" ||
2174 wm_name == "Openbox" || 2175 wm_name == "Openbox" ||
2175 wm_name == "Xfwm4"); 2176 wm_name == "Xfwm4");
2176 } 2177 }
OLDNEW
« no previous file with comments | « chrome/browser/gtk/browser_titlebar.cc ('k') | chrome/browser/gtk/create_application_shortcuts_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698