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

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

Issue 2444383008: session_manager: Create ChromeSessionManager early (Closed)
Patch Set: for #4 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_MANAGE R_DELEGATE_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_MANAGE R_DELEGATE_H_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "components/session_manager/core/session_manager.h"
12
13 namespace chromeos {
14
15 class KioskAutoLauncherSessionManagerDelegate
16 : public session_manager::SessionManagerDelegate {
17 public:
18 KioskAutoLauncherSessionManagerDelegate();
19 ~KioskAutoLauncherSessionManagerDelegate() override;
20
21 private:
22 // session_manager::SessionManagerDelegate implementation:
23 void Start() override;
24
25 DISALLOW_COPY_AND_ASSIGN(KioskAutoLauncherSessionManagerDelegate);
26 };
27
28 } // namespace chromeos
29
30 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_KIOSK_AUTO_LAUNCHER_SESSION_MAN AGER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698