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

Side by Side Diff: chrome/browser/chromeos/login/session/kiosk_auto_launcher_session_initializer.h

Issue 2444383008: session_manager: Create ChromeSessionManager early (Closed)
Patch Set: fix compile, StubLoginSessionInitializer -> StubSessionInitializer Created 4 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_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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698