Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(662)

Side by Side Diff: chrome/browser/chromeos/system/device_disabling_manager_default_delegate.h

Issue 711433002: Enable device disabling during normal operation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@f_4_425574_add_device_disabling_manager
Patch Set: Address one more comment I had missed. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698