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