| 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 "chrome/browser/ui/ash/system_tray_delegate_win.h" | 5 #include "chrome/browser/ui/ash/system_tray_delegate_win.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 147 |
| 148 virtual void ShowLocallyManagedUserInfo() OVERRIDE { | 148 virtual void ShowLocallyManagedUserInfo() OVERRIDE { |
| 149 } | 149 } |
| 150 | 150 |
| 151 virtual void ShowEnterpriseInfo() OVERRIDE { | 151 virtual void ShowEnterpriseInfo() OVERRIDE { |
| 152 } | 152 } |
| 153 | 153 |
| 154 virtual void ShowUserLogin() OVERRIDE { | 154 virtual void ShowUserLogin() OVERRIDE { |
| 155 } | 155 } |
| 156 | 156 |
| 157 virtual void ShowSpringChargerReplacementDialog() OVERRIDE { |
| 158 } |
| 159 |
| 160 virtual bool HasUserConfirmedSafeSpringCharger() OVERRIDE { |
| 161 return false; |
| 162 } |
| 163 |
| 157 virtual void ShutDown() OVERRIDE { | 164 virtual void ShutDown() OVERRIDE { |
| 158 } | 165 } |
| 159 | 166 |
| 160 virtual void SignOut() OVERRIDE { | 167 virtual void SignOut() OVERRIDE { |
| 161 } | 168 } |
| 162 | 169 |
| 163 virtual void RequestLockScreen() OVERRIDE { | 170 virtual void RequestLockScreen() OVERRIDE { |
| 164 } | 171 } |
| 165 | 172 |
| 166 virtual void RequestRestartForUpdate() OVERRIDE { | 173 virtual void RequestRestartForUpdate() OVERRIDE { |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 318 |
| 312 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin); | 319 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin); |
| 313 }; | 320 }; |
| 314 | 321 |
| 315 } // namespace | 322 } // namespace |
| 316 | 323 |
| 317 | 324 |
| 318 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() { | 325 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() { |
| 319 return new SystemTrayDelegateWin(); | 326 return new SystemTrayDelegateWin(); |
| 320 } | 327 } |
| OLD | NEW |