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 "ash/magnifier/magnifier_constants.h" | 7 #include "ash/magnifier/magnifier_constants.h" |
8 #include "chrome/browser/ui/ash/caps_lock_delegate_views.h" | 8 #include "chrome/browser/ui/ash/caps_lock_delegate_views.h" |
9 #include "chrome/browser/ui/ash/window_positioner.h" | 9 #include "chrome/browser/ui/ash/window_positioner.h" |
10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 void ChromeShellDelegate::Shutdown() { | 26 void ChromeShellDelegate::Shutdown() { |
27 } | 27 } |
28 | 28 |
29 void ChromeShellDelegate::OpenFileManager(bool as_dialog) { | 29 void ChromeShellDelegate::OpenFileManager(bool as_dialog) { |
30 } | 30 } |
31 | 31 |
32 void ChromeShellDelegate::OpenCrosh() { | 32 void ChromeShellDelegate::OpenCrosh() { |
33 } | 33 } |
34 | 34 |
35 void ChromeShellDelegate::OpenMobileSetup(const std::string& service_path) { | |
36 } | |
37 | |
38 void ChromeShellDelegate::ShowKeyboardOverlay() { | 35 void ChromeShellDelegate::ShowKeyboardOverlay() { |
39 } | 36 } |
40 | 37 |
41 void ChromeShellDelegate::ToggleHighContrast() { | 38 void ChromeShellDelegate::ToggleHighContrast() { |
42 } | 39 } |
43 | 40 |
44 bool ChromeShellDelegate::IsSpokenFeedbackEnabled() const { | 41 bool ChromeShellDelegate::IsSpokenFeedbackEnabled() const { |
45 return false; | 42 return false; |
46 } | 43 } |
47 | 44 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 void ChromeShellDelegate::PlatformInit() { | 120 void ChromeShellDelegate::PlatformInit() { |
124 #if defined(OS_WIN) | 121 #if defined(OS_WIN) |
125 registrar_.Add(this, | 122 registrar_.Add(this, |
126 chrome::NOTIFICATION_ASH_SESSION_STARTED, | 123 chrome::NOTIFICATION_ASH_SESSION_STARTED, |
127 content::NotificationService::AllSources()); | 124 content::NotificationService::AllSources()); |
128 registrar_.Add(this, | 125 registrar_.Add(this, |
129 chrome::NOTIFICATION_ASH_SESSION_ENDED, | 126 chrome::NOTIFICATION_ASH_SESSION_ENDED, |
130 content::NotificationService::AllSources()); | 127 content::NotificationService::AllSources()); |
131 #endif | 128 #endif |
132 } | 129 } |
OLD | NEW |