| 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_state_delegate.h" | 9 #include "ash/session_state_delegate.h" |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 void DefaultSystemTrayDelegate::ShowEnterpriseInfo() { | 146 void DefaultSystemTrayDelegate::ShowEnterpriseInfo() { |
| 147 } | 147 } |
| 148 | 148 |
| 149 void DefaultSystemTrayDelegate::ShowLocallyManagedUserInfo() { | 149 void DefaultSystemTrayDelegate::ShowLocallyManagedUserInfo() { |
| 150 } | 150 } |
| 151 | 151 |
| 152 void DefaultSystemTrayDelegate::ShowUserLogin() { | 152 void DefaultSystemTrayDelegate::ShowUserLogin() { |
| 153 } | 153 } |
| 154 | 154 |
| 155 void DefaultSystemTrayDelegate::ShowSpringChargerReplacementDialog() { |
| 156 } |
| 157 |
| 155 void DefaultSystemTrayDelegate::ShutDown() { | 158 void DefaultSystemTrayDelegate::ShutDown() { |
| 156 } | 159 } |
| 157 | 160 |
| 158 void DefaultSystemTrayDelegate::SignOut() { | 161 void DefaultSystemTrayDelegate::SignOut() { |
| 159 } | 162 } |
| 160 | 163 |
| 161 void DefaultSystemTrayDelegate::RequestLockScreen() { | 164 void DefaultSystemTrayDelegate::RequestLockScreen() { |
| 162 } | 165 } |
| 163 | 166 |
| 164 void DefaultSystemTrayDelegate::RequestRestartForUpdate() { | 167 void DefaultSystemTrayDelegate::RequestRestartForUpdate() { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 base::TimeDelta* session_length_limit) { | 266 base::TimeDelta* session_length_limit) { |
| 264 return false; | 267 return false; |
| 265 } | 268 } |
| 266 | 269 |
| 267 int DefaultSystemTrayDelegate::GetSystemTrayMenuWidth() { | 270 int DefaultSystemTrayDelegate::GetSystemTrayMenuWidth() { |
| 268 // This is the default width for English languages. | 271 // This is the default width for English languages. |
| 269 return 300; | 272 return 300; |
| 270 } | 273 } |
| 271 | 274 |
| 272 } // namespace ash | 275 } // namespace ash |
| OLD | NEW |