| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/system/tray/system_tray_delegate.h" | 5 #include "ash/common/system/tray/system_tray_delegate.h" |
| 6 | 6 |
| 7 #include "ash/common/system/tray/ime_info.h" | 7 #include "ash/common/system/tray/ime_info.h" |
| 8 #include "ash/common/system/tray/system_tray_item.h" | 8 #include "ash/common/system/tray/system_tray_item.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 } | 106 } |
| 107 | 107 |
| 108 void SystemTrayDelegate::ShowIMESettings() {} | 108 void SystemTrayDelegate::ShowIMESettings() {} |
| 109 | 109 |
| 110 void SystemTrayDelegate::ShowHelp() {} | 110 void SystemTrayDelegate::ShowHelp() {} |
| 111 | 111 |
| 112 void SystemTrayDelegate::ShowAccessibilityHelp() {} | 112 void SystemTrayDelegate::ShowAccessibilityHelp() {} |
| 113 | 113 |
| 114 void SystemTrayDelegate::ShowAccessibilitySettings() {} | 114 void SystemTrayDelegate::ShowAccessibilitySettings() {} |
| 115 | 115 |
| 116 void SystemTrayDelegate::ShowPaletteHelp() {} |
| 117 |
| 118 void SystemTrayDelegate::ShowPaletteSettings() {} |
| 119 |
| 116 void SystemTrayDelegate::ShowPublicAccountInfo() {} | 120 void SystemTrayDelegate::ShowPublicAccountInfo() {} |
| 117 | 121 |
| 118 void SystemTrayDelegate::ShowEnterpriseInfo() {} | 122 void SystemTrayDelegate::ShowEnterpriseInfo() {} |
| 119 | 123 |
| 120 void SystemTrayDelegate::ShowSupervisedUserInfo() {} | 124 void SystemTrayDelegate::ShowSupervisedUserInfo() {} |
| 121 | 125 |
| 122 void SystemTrayDelegate::ShowUserLogin() {} | 126 void SystemTrayDelegate::ShowUserLogin() {} |
| 123 | 127 |
| 124 void SystemTrayDelegate::SignOut() {} | 128 void SystemTrayDelegate::SignOut() {} |
| 125 | 129 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 SystemTray* tray) { | 233 SystemTray* tray) { |
| 230 return nullptr; | 234 return nullptr; |
| 231 } | 235 } |
| 232 | 236 |
| 233 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 237 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 234 SystemTray* tray) { | 238 SystemTray* tray) { |
| 235 return nullptr; | 239 return nullptr; |
| 236 } | 240 } |
| 237 | 241 |
| 238 } // namespace ash | 242 } // namespace ash |
| OLD | NEW |