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_STUB_SESSION_INITIALIZER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_STUB_SESSION_INITIALIZER_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/macros.h" |
| 11 #include "chrome/browser/chromeos/login/session/restore_after_crash_session_init
ializer.h" |
| 12 |
| 13 class Profile; |
| 14 |
| 15 namespace chromeos { |
| 16 |
| 17 class StubSessionInitializer : public RestoreAfterCrashSessionInitializer { |
| 18 public: |
| 19 StubSessionInitializer(Profile* profile, const std::string& login_user_id); |
| 20 ~StubSessionInitializer() override; |
| 21 |
| 22 // RestoreAfterCrashSessionInitializer: |
| 23 void Start() override; |
| 24 |
| 25 private: |
| 26 DISALLOW_COPY_AND_ASSIGN(StubSessionInitializer); |
| 27 }; |
| 28 |
| 29 } // namespace chromeos |
| 30 |
| 31 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_STUB_SESSION_INITIALIZER_H_ |
OLD | NEW |