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 "ash/system/tray/default_system_tray_delegate.h" | 5 #include "ash/system/tray/default_system_tray_delegate.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "ash/session/session_state_delegate.h" | 9 #include "ash/session/session_state_delegate.h" |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 void DefaultSystemTrayDelegate::ShowDisplaySettings() { | 117 void DefaultSystemTrayDelegate::ShowDisplaySettings() { |
118 } | 118 } |
119 | 119 |
120 void DefaultSystemTrayDelegate::ShowChromeSlow() { | 120 void DefaultSystemTrayDelegate::ShowChromeSlow() { |
121 } | 121 } |
122 | 122 |
123 bool DefaultSystemTrayDelegate::ShouldShowDisplayNotification() { | 123 bool DefaultSystemTrayDelegate::ShouldShowDisplayNotification() { |
124 return false; | 124 return false; |
125 } | 125 } |
126 | 126 |
127 void DefaultSystemTrayDelegate::ShowDriveSettings() { | |
128 } | |
129 | |
130 void DefaultSystemTrayDelegate::ShowIMESettings() { | 127 void DefaultSystemTrayDelegate::ShowIMESettings() { |
131 } | 128 } |
132 | 129 |
133 void DefaultSystemTrayDelegate::ShowHelp() { | 130 void DefaultSystemTrayDelegate::ShowHelp() { |
134 } | 131 } |
135 | 132 |
136 void DefaultSystemTrayDelegate::ShowAccessibilityHelp() { | 133 void DefaultSystemTrayDelegate::ShowAccessibilityHelp() { |
137 } | 134 } |
138 | 135 |
139 void DefaultSystemTrayDelegate::ShowAccessibilitySettings() { | 136 void DefaultSystemTrayDelegate::ShowAccessibilitySettings() { |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 void DefaultSystemTrayDelegate::GetCurrentIMEProperties( | 195 void DefaultSystemTrayDelegate::GetCurrentIMEProperties( |
199 IMEPropertyInfoList* list) { | 196 IMEPropertyInfoList* list) { |
200 } | 197 } |
201 | 198 |
202 void DefaultSystemTrayDelegate::SwitchIME(const std::string& ime_id) { | 199 void DefaultSystemTrayDelegate::SwitchIME(const std::string& ime_id) { |
203 } | 200 } |
204 | 201 |
205 void DefaultSystemTrayDelegate::ActivateIMEProperty(const std::string& key) { | 202 void DefaultSystemTrayDelegate::ActivateIMEProperty(const std::string& key) { |
206 } | 203 } |
207 | 204 |
208 void DefaultSystemTrayDelegate::CancelDriveOperation(int32 operation_id) { | |
209 } | |
210 | |
211 void DefaultSystemTrayDelegate::GetDriveOperationStatusList( | |
212 ash::DriveOperationStatusList*) { | |
213 } | |
214 | |
215 void DefaultSystemTrayDelegate::ShowNetworkConfigure( | 205 void DefaultSystemTrayDelegate::ShowNetworkConfigure( |
216 const std::string& network_id, | 206 const std::string& network_id, |
217 gfx::NativeWindow parent_window) { | 207 gfx::NativeWindow parent_window) { |
218 } | 208 } |
219 | 209 |
220 bool DefaultSystemTrayDelegate::EnrollNetwork(const std::string& network_id, | 210 bool DefaultSystemTrayDelegate::EnrollNetwork(const std::string& network_id, |
221 gfx::NativeWindow parent_window) { | 211 gfx::NativeWindow parent_window) { |
222 return true; | 212 return true; |
223 } | 213 } |
224 | 214 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 bool DefaultSystemTrayDelegate::IsSearchKeyMappedToCapsLock() { | 280 bool DefaultSystemTrayDelegate::IsSearchKeyMappedToCapsLock() { |
291 return false; | 281 return false; |
292 } | 282 } |
293 | 283 |
294 tray::UserAccountsDelegate* DefaultSystemTrayDelegate::GetUserAccountsDelegate( | 284 tray::UserAccountsDelegate* DefaultSystemTrayDelegate::GetUserAccountsDelegate( |
295 const std::string& user_id) { | 285 const std::string& user_id) { |
296 return NULL; | 286 return NULL; |
297 } | 287 } |
298 | 288 |
299 } // namespace ash | 289 } // namespace ash |
OLD | NEW |