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

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

Issue 8741017: gtk: Remove unused include of bug_report_ui.h from browser_window_gtk.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <dlfcn.h> 9 #include <dlfcn.h>
10 #include <string> 10 #include <string>
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #include "chrome/browser/ui/gtk/repost_form_warning_gtk.h" 65 #include "chrome/browser/ui/gtk/repost_form_warning_gtk.h"
66 #include "chrome/browser/ui/gtk/status_bubble_gtk.h" 66 #include "chrome/browser/ui/gtk/status_bubble_gtk.h"
67 #include "chrome/browser/ui/gtk/tab_contents_container_gtk.h" 67 #include "chrome/browser/ui/gtk/tab_contents_container_gtk.h"
68 #include "chrome/browser/ui/gtk/tabs/tab_strip_gtk.h" 68 #include "chrome/browser/ui/gtk/tabs/tab_strip_gtk.h"
69 #include "chrome/browser/ui/gtk/task_manager_gtk.h" 69 #include "chrome/browser/ui/gtk/task_manager_gtk.h"
70 #include "chrome/browser/ui/gtk/update_recommended_dialog.h" 70 #include "chrome/browser/ui/gtk/update_recommended_dialog.h"
71 #include "chrome/browser/ui/omnibox/location_bar.h" 71 #include "chrome/browser/ui/omnibox/location_bar.h"
72 #include "chrome/browser/ui/omnibox/omnibox_view.h" 72 #include "chrome/browser/ui/omnibox/omnibox_view.h"
73 #include "chrome/browser/ui/page_info_bubble.h" 73 #include "chrome/browser/ui/page_info_bubble.h"
74 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 74 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
75 #include "chrome/browser/ui/webui/bug_report_ui.h"
76 #include "chrome/browser/ui/webui/task_manager_dialog.h" 75 #include "chrome/browser/ui/webui/task_manager_dialog.h"
77 #include "chrome/browser/ui/window_sizer.h" 76 #include "chrome/browser/ui/window_sizer.h"
78 #include "chrome/browser/web_applications/web_app.h" 77 #include "chrome/browser/web_applications/web_app.h"
79 #include "chrome/common/chrome_notification_types.h" 78 #include "chrome/common/chrome_notification_types.h"
80 #include "chrome/common/chrome_switches.h" 79 #include "chrome/common/chrome_switches.h"
81 #include "chrome/common/pref_names.h" 80 #include "chrome/common/pref_names.h"
82 #include "content/browser/download/download_manager.h" 81 #include "content/browser/download/download_manager.h"
83 #include "content/browser/renderer_host/render_view_host.h" 82 #include "content/browser/renderer_host/render_view_host.h"
84 #include "content/browser/renderer_host/render_widget_host_view.h" 83 #include "content/browser/renderer_host/render_widget_host_view.h"
85 #include "content/browser/tab_contents/tab_contents.h" 84 #include "content/browser/tab_contents/tab_contents.h"
(...skipping 2341 matching lines...) Expand 10 before | Expand all | Expand 10 after
2427 wm_type == ui::WM_OPENBOX || 2426 wm_type == ui::WM_OPENBOX ||
2428 wm_type == ui::WM_XFWM4); 2427 wm_type == ui::WM_XFWM4);
2429 } 2428 }
2430 2429
2431 // static 2430 // static
2432 BrowserWindow* BrowserWindow::CreateBrowserWindow(Browser* browser) { 2431 BrowserWindow* BrowserWindow::CreateBrowserWindow(Browser* browser) {
2433 BrowserWindowGtk* browser_window_gtk = new BrowserWindowGtk(browser); 2432 BrowserWindowGtk* browser_window_gtk = new BrowserWindowGtk(browser);
2434 browser_window_gtk->Init(); 2433 browser_window_gtk->Init();
2435 return browser_window_gtk; 2434 return browser_window_gtk;
2436 } 2435 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698