OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/aura/chrome_browser_main_extra_parts_aura.h" | 5 #include "chrome/browser/ui/aura/chrome_browser_main_extra_parts_aura.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
9 #include "chrome/browser/chrome_browser_main.h" | 9 #include "chrome/browser/chrome_browser_main.h" |
10 #include "chrome/browser/ui/aura/active_desktop_monitor.h" | 10 #include "chrome/browser/ui/aura/active_desktop_monitor.h" |
11 #include "chrome/browser/ui/host_desktop.h" | 11 #include "chrome/browser/ui/host_desktop.h" |
12 #include "chrome/browser/ui/simple_message_box.h" | 12 #include "chrome/browser/ui/simple_message_box.h" |
13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
14 #include "grit/chromium_strings.h" | 14 #include "chrome/grit/chromium_strings.h" |
15 #include "grit/generated_resources.h" | 15 #include "chrome/grit/generated_resources.h" |
16 #include "ui/aura/env.h" | 16 #include "ui/aura/env.h" |
17 #include "ui/base/l10n/l10n_util.h" | 17 #include "ui/base/l10n/l10n_util.h" |
18 #include "ui/gfx/screen.h" | 18 #include "ui/gfx/screen.h" |
19 #include "ui/views/widget/native_widget_aura.h" | 19 #include "ui/views/widget/native_widget_aura.h" |
20 | 20 |
21 #if defined(USE_X11) && !defined(OS_CHROMEOS) | 21 #if defined(USE_X11) && !defined(OS_CHROMEOS) |
22 #include "base/prefs/pref_service.h" | 22 #include "base/prefs/pref_service.h" |
23 #include "chrome/browser/profiles/profile.h" | 23 #include "chrome/browser/profiles/profile.h" |
24 #include "chrome/browser/ui/libgtk2ui/gtk2_ui.h" | 24 #include "chrome/browser/ui/libgtk2ui/gtk2_ui.h" |
25 #include "chrome/common/pref_names.h" | 25 #include "chrome/common/pref_names.h" |
26 #include "ui/aura/window.h" | 26 #include "ui/aura/window.h" |
27 #include "ui/base/ime/input_method_initializer.h" | 27 #include "ui/base/ime/input_method_initializer.h" |
28 #include "ui/native_theme/native_theme_aura.h" | 28 #include "ui/native_theme/native_theme_aura.h" |
29 #include "ui/views/linux_ui/linux_ui.h" | 29 #include "ui/views/linux_ui/linux_ui.h" |
30 #endif | 30 #endif |
31 | 31 |
32 #if defined(USE_ASH) | 32 #if defined(USE_ASH) |
33 #include "chrome/browser/ui/ash/ash_init.h" | 33 #include "chrome/browser/ui/ash/ash_init.h" |
34 #if defined(OS_WIN) | |
35 #include "base/command_line.h" | |
36 #include "chrome/common/chrome_switches.h" | |
37 #endif // defined(OS_WIN) | |
38 #endif // defined(USE_ASH) | 34 #endif // defined(USE_ASH) |
39 | 35 |
40 #if !defined(OS_CHROMEOS) | 36 #if !defined(OS_CHROMEOS) |
41 #include "ui/views/widget/desktop_aura/desktop_screen.h" | 37 #include "ui/views/widget/desktop_aura/desktop_screen.h" |
42 #endif | 38 #endif |
43 | 39 |
44 namespace { | 40 namespace { |
45 | 41 |
46 #if defined(USE_X11) && !defined(OS_CHROMEOS) | 42 #if defined(USE_X11) && !defined(OS_CHROMEOS) |
47 ui::NativeTheme* GetNativeThemeForWindow(aura::Window* window) { | 43 ui::NativeTheme* GetNativeThemeForWindow(aura::Window* window) { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 chrome::MESSAGE_BOX_TYPE_WARNING); | 161 chrome::MESSAGE_BOX_TYPE_WARNING); |
166 | 162 |
167 // Avoids gpu_process_transport_factory.cc(153)] Check failed: | 163 // Avoids gpu_process_transport_factory.cc(153)] Check failed: |
168 // per_compositor_data_.empty() when quit is chosen. | 164 // per_compositor_data_.empty() when quit is chosen. |
169 base::RunLoop().RunUntilIdle(); | 165 base::RunLoop().RunUntilIdle(); |
170 | 166 |
171 exit(EXIT_FAILURE); | 167 exit(EXIT_FAILURE); |
172 } | 168 } |
173 } | 169 } |
174 #endif | 170 #endif |
OLD | NEW |