Chromium Code Reviews| Index: chrome/browser/chromeos/login/session/chrome_session_manager.h |
| diff --git a/chrome/browser/chromeos/login/session/chrome_session_manager.h b/chrome/browser/chromeos/login/session/chrome_session_manager.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a30565b67bd033f54a2f6ef7ec1f5959757ba463 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/login/session/chrome_session_manager.h |
| @@ -0,0 +1,36 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_CHROME_SESSION_MANAGER_H_ |
| +#define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_CHROME_SESSION_MANAGER_H_ |
| + |
| +#include "base/basictypes.h" |
| +#include "components/session_manager/core/session_manager.h" |
| + |
| +namespace base { |
| +class CommandLine; |
| +} |
| + |
| +class Profile; |
| + |
| +namespace chromeos { |
| + |
| +class ChromeSessionManager : public session_manager::SessionManager { |
| + public: |
| + static scoped_ptr<session_manager::SessionManager> CreateSessionManager( |
| + const base::CommandLine& parsed_command_line, |
| + Profile* profile, |
| + bool is_running_test); |
| + |
| + explicit ChromeSessionManager( |
| + session_manager::SessionManagerDelegate* delegate); |
| + virtual ~ChromeSessionManager(); |
|
oshima
2014/07/10 20:07:41
can these be in private?
|
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(ChromeSessionManager); |
| +}; |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_CHROME_SESSION_MANAGER_H_ |