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..6fb5e59d8fddc299aae7311a3b5abd9af870e691 |
--- /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); |
+ |
+ private: |
+ explicit ChromeSessionManager( |
+ session_manager::SessionManagerDelegate* delegate); |
+ virtual ~ChromeSessionManager(); |
+ |
+ DISALLOW_COPY_AND_ASSIGN(ChromeSessionManager); |
+}; |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_CHROME_SESSION_MANAGER_H_ |