| 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/views/ash/chrome_shell_delegate.h" | 5 #include "chrome/browser/ui/views/ash/chrome_shell_delegate.h" |
| 6 | 6 |
| 7 #include "ash/launcher/launcher_types.h" | 7 #include "ash/launcher/launcher_types.h" |
| 8 #include "ash/system/tray/system_tray_delegate.h" | 8 #include "ash/system/tray/system_tray_delegate.h" |
| 9 #include "ash/wm/partial_screenshot_view.h" | 9 #include "ash/wm/partial_screenshot_view.h" |
| 10 #include "ash/wm/window_util.h" | 10 #include "ash/wm/window_util.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "chrome/common/url_constants.h" | 23 #include "chrome/common/url_constants.h" |
| 24 #include "content/public/browser/notification_service.h" | 24 #include "content/public/browser/notification_service.h" |
| 25 #include "content/public/browser/user_metrics.h" | 25 #include "content/public/browser/user_metrics.h" |
| 26 #include "content/public/browser/web_contents.h" | 26 #include "content/public/browser/web_contents.h" |
| 27 #include "grit/generated_resources.h" | 27 #include "grit/generated_resources.h" |
| 28 #include "ui/aura/window.h" | 28 #include "ui/aura/window.h" |
| 29 | 29 |
| 30 #if defined(OS_CHROMEOS) | 30 #if defined(OS_CHROMEOS) |
| 31 #include "base/chromeos/chromeos_version.h" | 31 #include "base/chromeos/chromeos_version.h" |
| 32 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" | 32 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" |
| 33 #include "chrome/browser/chromeos/background/desktop_background_observer.h" | 33 #include "chrome/browser/chromeos/background/ash_user_wallpaper_delegate.h" |
| 34 #include "chrome/browser/chromeos/extensions/file_manager_util.h" | 34 #include "chrome/browser/chromeos/extensions/file_manager_util.h" |
| 35 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h" | 35 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h" |
| 36 #include "chrome/browser/chromeos/login/webui_login_display_host.h" | 36 #include "chrome/browser/chromeos/login/webui_login_display_host.h" |
| 37 #include "chrome/browser/chromeos/login/user_manager.h" | 37 #include "chrome/browser/chromeos/login/user_manager.h" |
| 38 #include "chrome/browser/chromeos/system/ash_system_tray_delegate.h" | 38 #include "chrome/browser/chromeos/system/ash_system_tray_delegate.h" |
| 39 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" | 39 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
| 40 #include "chrome/browser/ui/webui/chromeos/mobile_setup_dialog.h" | 40 #include "chrome/browser/ui/webui/chromeos/mobile_setup_dialog.h" |
| 41 #include "chromeos/dbus/dbus_thread_manager.h" | 41 #include "chromeos/dbus/dbus_thread_manager.h" |
| 42 #include "chromeos/dbus/power_manager_client.h" | 42 #include "chromeos/dbus/power_manager_client.h" |
| 43 #endif | 43 #endif |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 ash::Shell::GetInstance()->CreateLauncher(); | 252 ash::Shell::GetInstance()->CreateLauncher(); |
| 253 break; | 253 break; |
| 254 default: | 254 default: |
| 255 NOTREACHED() << "Unexpected notification " << type; | 255 NOTREACHED() << "Unexpected notification " << type; |
| 256 } | 256 } |
| 257 #else | 257 #else |
| 258 // MSVC++ warns about switch statements without any cases. | 258 // MSVC++ warns about switch statements without any cases. |
| 259 NOTREACHED() << "Unexpected notification " << type; | 259 NOTREACHED() << "Unexpected notification " << type; |
| 260 #endif | 260 #endif |
| 261 } | 261 } |
| OLD | NEW |