Index: chrome/browser/chromeos/login/session/kiosk_auto_launcher_session_initializer.h |
diff --git a/chrome/browser/chromeos/login/session/kiosk_auto_launcher_session_initializer.h b/chrome/browser/chromeos/login/session/kiosk_auto_launcher_session_initializer.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8aaa1ffbff7e9cb76d42496e20acf8db64cdd392 |
--- /dev/null |
+++ b/chrome/browser/chromeos/login/session/kiosk_auto_launcher_session_initializer.h |
@@ -0,0 +1,25 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_INITIALIZER_H_ |
+#define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_INITIALIZER_H_ |
+ |
+#include "base/macros.h" |
+ |
+namespace chromeos { |
+ |
+class KioskAutoLauncherSessionInitializer { |
+ public: |
+ KioskAutoLauncherSessionInitializer(); |
+ ~KioskAutoLauncherSessionInitializer(); |
+ |
+ 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
|
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(KioskAutoLauncherSessionInitializer); |
+}; |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_INITIALIZER_H_ |