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

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

Issue 6598086: Update more includes that were pointing to the old locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/ui/gtk/browser_window_gtk.h" 5 #include "chrome/browser/ui/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 11 matching lines...) Expand all
22 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" 22 #include "chrome/browser/autocomplete/autocomplete_edit_view.h"
23 #include "chrome/browser/bookmarks/bookmark_utils.h" 23 #include "chrome/browser/bookmarks/bookmark_utils.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/download/download_item_model.h" 27 #include "chrome/browser/download/download_item_model.h"
28 #include "chrome/browser/download/download_manager.h" 28 #include "chrome/browser/download/download_manager.h"
29 #include "chrome/browser/page_info_window.h" 29 #include "chrome/browser/page_info_window.h"
30 #include "chrome/browser/prefs/pref_service.h" 30 #include "chrome/browser/prefs/pref_service.h"
31 #include "chrome/browser/profiles/profile.h" 31 #include "chrome/browser/profiles/profile.h"
32 #include "chrome/browser/tab_contents/tab_contents.h"
33 #include "chrome/browser/tab_contents/tab_contents_view.h"
34 #include "chrome/browser/tabs/tab_strip_model.h" 32 #include "chrome/browser/tabs/tab_strip_model.h"
35 #include "chrome/browser/themes/browser_theme_provider.h" 33 #include "chrome/browser/themes/browser_theme_provider.h"
36 #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.h" 34 #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.h"
37 #include "chrome/browser/ui/browser.h" 35 #include "chrome/browser/ui/browser.h"
38 #include "chrome/browser/ui/browser_dialogs.h" 36 #include "chrome/browser/ui/browser_dialogs.h"
39 #include "chrome/browser/ui/find_bar/find_bar_controller.h" 37 #include "chrome/browser/ui/find_bar/find_bar_controller.h"
40 #include "chrome/browser/ui/find_bar/find_tab_helper.h" 38 #include "chrome/browser/ui/find_bar/find_tab_helper.h"
41 #include "chrome/browser/ui/gtk/about_chrome_dialog.h" 39 #include "chrome/browser/ui/gtk/about_chrome_dialog.h"
42 #include "chrome/browser/ui/gtk/accelerators_gtk.h" 40 #include "chrome/browser/ui/gtk/accelerators_gtk.h"
43 #include "chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h" 41 #include "chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h"
(...skipping 28 matching lines...) Expand all
72 #include "chrome/browser/ui/gtk/theme_install_bubble_view_gtk.h" 70 #include "chrome/browser/ui/gtk/theme_install_bubble_view_gtk.h"
73 #include "chrome/browser/ui/gtk/update_recommended_dialog.h" 71 #include "chrome/browser/ui/gtk/update_recommended_dialog.h"
74 #include "chrome/browser/ui/omnibox/location_bar.h" 72 #include "chrome/browser/ui/omnibox/location_bar.h"
75 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 73 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
76 #include "chrome/browser/ui/webui/bug_report_ui.h" 74 #include "chrome/browser/ui/webui/bug_report_ui.h"
77 #include "chrome/browser/ui/window_sizer.h" 75 #include "chrome/browser/ui/window_sizer.h"
78 #include "chrome/common/chrome_switches.h" 76 #include "chrome/common/chrome_switches.h"
79 #include "chrome/common/native_web_keyboard_event.h" 77 #include "chrome/common/native_web_keyboard_event.h"
80 #include "chrome/common/notification_service.h" 78 #include "chrome/common/notification_service.h"
81 #include "chrome/common/pref_names.h" 79 #include "chrome/common/pref_names.h"
80 #include "content/browser/tab_contents/tab_contents.h"
81 #include "content/browser/tab_contents/tab_contents_view.h"
82 #include "grit/app_resources.h" 82 #include "grit/app_resources.h"
83 #include "grit/chromium_strings.h" 83 #include "grit/chromium_strings.h"
84 #include "grit/generated_resources.h" 84 #include "grit/generated_resources.h"
85 #include "grit/theme_resources.h" 85 #include "grit/theme_resources.h"
86 #include "ui/base/keycodes/keyboard_codes.h" 86 #include "ui/base/keycodes/keyboard_codes.h"
87 #include "ui/base/l10n/l10n_util.h" 87 #include "ui/base/l10n/l10n_util.h"
88 #include "ui/gfx/gtk_util.h" 88 #include "ui/gfx/gtk_util.h"
89 #include "ui/gfx/rect.h" 89 #include "ui/gfx/rect.h"
90 #include "ui/gfx/skia_utils_gtk.h" 90 #include "ui/gfx/skia_utils_gtk.h"
91 91
(...skipping 2162 matching lines...) Expand 10 before | Expand all | Expand 10 after
2254 // special-case the ones where the custom frame should be used. These names 2254 // special-case the ones where the custom frame should be used. These names
2255 // are taken from the WMs' source code. 2255 // are taken from the WMs' source code.
2256 return (wm_name == "Blackbox" || 2256 return (wm_name == "Blackbox" ||
2257 wm_name == "compiz" || 2257 wm_name == "compiz" ||
2258 wm_name == "e16" || // Enlightenment DR16 2258 wm_name == "e16" || // Enlightenment DR16
2259 wm_name == "Metacity" || 2259 wm_name == "Metacity" ||
2260 wm_name == "Mutter" || 2260 wm_name == "Mutter" ||
2261 wm_name == "Openbox" || 2261 wm_name == "Openbox" ||
2262 wm_name == "Xfwm4"); 2262 wm_name == "Xfwm4");
2263 } 2263 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/bookmarks/bookmark_menu_controller_gtk.cc ('k') | chrome/browser/ui/gtk/constrained_window_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698