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

Unified Diff: chrome/browser/chromeos/cros/login_library.h

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/cros/keyboard_library.cc ('k') | chrome/browser/chromeos/cros/login_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/login_library.h
diff --git a/chrome/browser/chromeos/cros/login_library.h b/chrome/browser/chromeos/cros/login_library.h
index b8f2b6cffab38c1792775790fae44edcea4f388f..292d41276b18217a16f83eba91f2b3a60dfa6132 100644
--- a/chrome/browser/chromeos/cros/login_library.h
+++ b/chrome/browser/chromeos/cros/login_library.h
@@ -32,22 +32,9 @@ class LoginLibrary {
// This will tell the session manager to terminate the session for the user
// indicated by |unique_id|.
virtual bool StopSession(const std::string& unique_id /* unused */) = 0;
-};
-
-// This class handles the interaction with the ChromeOS login library APIs.
-class LoginLibraryImpl : public LoginLibrary {
- public:
- LoginLibraryImpl() {}
- virtual ~LoginLibraryImpl() {}
-
- // LoginLibrary overrides.
- virtual bool EmitLoginPromptReady();
- virtual bool StartSession(const std::string& user_email,
- const std::string& unique_id /* unused */);
- virtual bool StopSession(const std::string& unique_id /* unused */);
- private:
- DISALLOW_COPY_AND_ASSIGN(LoginLibraryImpl);
+ // Get library implementation.
+ static LoginLibrary* GetImpl(bool stub);
};
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/keyboard_library.cc ('k') | chrome/browser/chromeos/cros/login_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698