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_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_ |
OLD | NEW |