| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/ash/chrome_shell_delegate.h" | 5 #include "chrome/browser/ui/ash/chrome_shell_delegate.h" |
| 6 | 6 |
| 7 #include "apps/native_app_window.h" | |
| 8 #include "apps/shell_window_registry.h" | 7 #include "apps/shell_window_registry.h" |
| 8 #include "apps/ui/native_app_window.h" |
| 9 #include "ash/keyboard_overlay/keyboard_overlay_view.h" | 9 #include "ash/keyboard_overlay/keyboard_overlay_view.h" |
| 10 #include "ash/wm/mru_window_tracker.h" | 10 #include "ash/wm/mru_window_tracker.h" |
| 11 #include "ash/wm/window_util.h" | 11 #include "ash/wm/window_util.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/prefs/pref_service.h" | 13 #include "base/prefs/pref_service.h" |
| 14 #include "chrome/browser/chrome_notification_types.h" | 14 #include "chrome/browser/chrome_notification_types.h" |
| 15 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 15 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
| 16 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" | 16 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" |
| 17 #include "chrome/browser/chromeos/background/ash_user_wallpaper_delegate.h" | 17 #include "chrome/browser/chromeos/background/ash_user_wallpaper_delegate.h" |
| 18 #include "chrome/browser/chromeos/display/display_preferences.h" | 18 #include "chrome/browser/chromeos/display/display_preferences.h" |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 } | 254 } |
| 255 | 255 |
| 256 void ChromeShellDelegate::PlatformInit() { | 256 void ChromeShellDelegate::PlatformInit() { |
| 257 registrar_.Add(this, | 257 registrar_.Add(this, |
| 258 chrome::NOTIFICATION_LOGIN_USER_PROFILE_PREPARED, | 258 chrome::NOTIFICATION_LOGIN_USER_PROFILE_PREPARED, |
| 259 content::NotificationService::AllSources()); | 259 content::NotificationService::AllSources()); |
| 260 registrar_.Add(this, | 260 registrar_.Add(this, |
| 261 chrome::NOTIFICATION_SESSION_STARTED, | 261 chrome::NOTIFICATION_SESSION_STARTED, |
| 262 content::NotificationService::AllSources()); | 262 content::NotificationService::AllSources()); |
| 263 } | 263 } |
| OLD | NEW |