| 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 "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "ash/magnifier/magnifier_constants.h" | 8 #include "ash/magnifier/magnifier_constants.h" |
| 9 #include "chrome/browser/prefs/session_startup_pref.h" | 9 #include "chrome/browser/prefs/session_startup_pref.h" |
| 10 #include "chrome/browser/profiles/profile_manager.h" | 10 #include "chrome/browser/profiles/profile_manager.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 void ChromeShellDelegate::Shutdown() { | 33 void ChromeShellDelegate::Shutdown() { |
| 34 } | 34 } |
| 35 | 35 |
| 36 void ChromeShellDelegate::OpenFileManager(bool as_dialog) { | 36 void ChromeShellDelegate::OpenFileManager(bool as_dialog) { |
| 37 } | 37 } |
| 38 | 38 |
| 39 void ChromeShellDelegate::OpenCrosh() { | 39 void ChromeShellDelegate::OpenCrosh() { |
| 40 } | 40 } |
| 41 | 41 |
| 42 void ChromeShellDelegate::OpenMobileSetup(const std::string& service_path) { | |
| 43 } | |
| 44 | |
| 45 void ChromeShellDelegate::ShowKeyboardOverlay() { | 42 void ChromeShellDelegate::ShowKeyboardOverlay() { |
| 46 } | 43 } |
| 47 | 44 |
| 48 void ChromeShellDelegate::ToggleHighContrast() { | 45 void ChromeShellDelegate::ToggleHighContrast() { |
| 49 } | 46 } |
| 50 | 47 |
| 51 bool ChromeShellDelegate::IsSpokenFeedbackEnabled() const { | 48 bool ChromeShellDelegate::IsSpokenFeedbackEnabled() const { |
| 52 return false; | 49 return false; |
| 53 } | 50 } |
| 54 | 51 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 void ChromeShellDelegate::PlatformInit() { | 152 void ChromeShellDelegate::PlatformInit() { |
| 156 #if defined(OS_WIN) | 153 #if defined(OS_WIN) |
| 157 registrar_.Add(this, | 154 registrar_.Add(this, |
| 158 chrome::NOTIFICATION_ASH_SESSION_STARTED, | 155 chrome::NOTIFICATION_ASH_SESSION_STARTED, |
| 159 content::NotificationService::AllSources()); | 156 content::NotificationService::AllSources()); |
| 160 registrar_.Add(this, | 157 registrar_.Add(this, |
| 161 chrome::NOTIFICATION_ASH_SESSION_ENDED, | 158 chrome::NOTIFICATION_ASH_SESSION_ENDED, |
| 162 content::NotificationService::AllSources()); | 159 content::NotificationService::AllSources()); |
| 163 #endif | 160 #endif |
| 164 } | 161 } |
| OLD | NEW |