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_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_INITIA LIZER_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_INITIA LIZER_H_ | |
7 | |
8 #include "base/macros.h" | |
9 | |
10 namespace chromeos { | |
11 | |
12 class KioskAutoLauncherSessionInitializer { | |
13 public: | |
14 KioskAutoLauncherSessionInitializer(); | |
15 ~KioskAutoLauncherSessionInitializer(); | |
16 | |
17 void Start(); | |
achuithb
2016/10/27 19:12:45
This is really just a static C-style function invo
achuithb
2016/10/27 19:13:32
Why not StartKioskSession(), StartOOBESession(), S
xiyuan
2016/10/27 21:10:43
Agree.
Removed those initializer classes and move
| |
18 | |
19 private: | |
20 DISALLOW_COPY_AND_ASSIGN(KioskAutoLauncherSessionInitializer); | |
21 }; | |
22 | |
23 } // namespace chromeos | |
24 | |
25 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_INI TIALIZER_H_ | |
OLD | NEW |