| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 info->update_required = false; | 72 info->update_required = false; |
| 73 info->factory_reset_required = false; | 73 info->factory_reset_required = false; |
| 74 } | 74 } |
| 75 | 75 |
| 76 bool SystemTrayDelegate::ShouldShowSettings() { | 76 bool SystemTrayDelegate::ShouldShowSettings() { |
| 77 return false; | 77 return false; |
| 78 } | 78 } |
| 79 | 79 |
| 80 void SystemTrayDelegate::ShowSetTimeDialog() {} | 80 void SystemTrayDelegate::ShowSetTimeDialog() {} |
| 81 | 81 |
| 82 void SystemTrayDelegate::ShowNetworkSettingsForGuid(const std::string& guid) {} | |
| 83 | |
| 84 bool SystemTrayDelegate::ShouldShowDisplayNotification() { | 82 bool SystemTrayDelegate::ShouldShowDisplayNotification() { |
| 85 return false; | 83 return false; |
| 86 } | 84 } |
| 87 | 85 |
| 88 void SystemTrayDelegate::ShowEnterpriseInfo() {} | 86 void SystemTrayDelegate::ShowEnterpriseInfo() {} |
| 89 | 87 |
| 90 void SystemTrayDelegate::ShowUserLogin() {} | 88 void SystemTrayDelegate::ShowUserLogin() {} |
| 91 | 89 |
| 92 void SystemTrayDelegate::SignOut() {} | 90 void SystemTrayDelegate::SignOut() {} |
| 93 | 91 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { | 188 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { |
| 191 return nullptr; | 189 return nullptr; |
| 192 } | 190 } |
| 193 | 191 |
| 194 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( | 192 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( |
| 195 SystemTray* tray) { | 193 SystemTray* tray) { |
| 196 return nullptr; | 194 return nullptr; |
| 197 } | 195 } |
| 198 | 196 |
| 199 } // namespace ash | 197 } // namespace ash |
| OLD | NEW |