OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_SYSTEM_DEVICE_DISABLING_MANAGER_DEFAULT_DELEGATE
_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_SYSTEM_DEVICE_DISABLING_MANAGER_DEFAULT_DELEGATE
_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "chrome/browser/chromeos/system/device_disabling_manager.h" |
| 10 |
| 11 namespace chromeos { |
| 12 namespace system { |
| 13 |
| 14 class DeviceDisablingManagerDefaultDelegate |
| 15 : public DeviceDisablingManager::Delegate { |
| 16 public: |
| 17 DeviceDisablingManagerDefaultDelegate(); |
| 18 |
| 19 private: |
| 20 // DeviceDisablingManager::Delegate: |
| 21 void RestartToLoginScreen() override; |
| 22 void ShowDeviceDisabledScreen() override; |
| 23 |
| 24 DISALLOW_COPY_AND_ASSIGN(DeviceDisablingManagerDefaultDelegate); |
| 25 }; |
| 26 |
| 27 } // namespace system |
| 28 } // namespace chromeos |
| 29 |
| 30 #endif // CHROME_BROWSER_CHROMEOS_SYSTEM_DEVICE_DISABLING_MANAGER_DEFAULT_DELEG
ATE_H_ |
OLD | NEW |