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

Side by Side Diff: chrome/browser/chromeos/login/session/login_oobe_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_LOGIN_OOBE_SESSION_INITIALIZER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_LOGIN_OOBE_SESSION_INITIALIZER_H_
7
8 #include "base/macros.h"
9
10 namespace chromeos {
11
12 class LoginOobeSessionInitializer {
13 public:
14 LoginOobeSessionInitializer();
15 ~LoginOobeSessionInitializer();
16
17 void Start();
18
19 private:
20 DISALLOW_COPY_AND_ASSIGN(LoginOobeSessionInitializer);
21 };
22
23 } // namespace chromeos
24
25 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_LOGIN_OOBE_SESSION_INITIALIZER_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698