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

Unified Diff: chrome/browser/chromeos/cros/screen_lock_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/power_library.cc ('k') | chrome/browser/chromeos/cros/screen_lock_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/screen_lock_library.h
diff --git a/chrome/browser/chromeos/cros/screen_lock_library.h b/chrome/browser/chromeos/cros/screen_lock_library.h
index a544c44a131d032a88d7c8fce9182ec47146eba6..f6206e0b2d0f1432b5bf7d90f0a9b8078568f09a 100644
--- a/chrome/browser/chromeos/cros/screen_lock_library.h
+++ b/chrome/browser/chromeos/cros/screen_lock_library.h
@@ -35,48 +35,9 @@ class ScreenLockLibrary {
virtual void NotifyScreenUnlockRequested() = 0;
// Notifies PowerManager that screen is unlocked.
virtual void NotifyScreenUnlockCompleted() = 0;
-};
-
-// This class handles the interaction with the ChromeOS screen lock APIs.
-class ScreenLockLibraryImpl : public ScreenLockLibrary {
- public:
- ScreenLockLibraryImpl();
- virtual ~ScreenLockLibraryImpl();
-
- // ScreenLockLibrary implementations:
- virtual void AddObserver(Observer* observer);
- virtual void RemoveObserver(Observer* observer);
- virtual void NotifyScreenLockRequested();
- virtual void NotifyScreenLockCompleted();
- virtual void NotifyScreenUnlockRequested();
- virtual void NotifyScreenUnlockCompleted();
-
- private:
- // This method is called when PowerManager requests to lock the screen.
- // This method is called on a background thread.
- static void ScreenLockedHandler(void* object, ScreenLockEvent event);
-
- // This methods starts the monitoring of screen lock request.
- void Init();
-
- // Called by the handler to notify the screen lock request from
- // SessionManager.
- void LockScreen();
-
- // Called by the handler to notify the screen unlock request from
- // SessionManager.
- void UnlockScreen();
-
- // Called by the handler to notify the screen unlock request has been
- // failed.
- void UnlockScreenFailed();
-
- ObserverList<Observer> observers_;
-
- // A reference to the screen lock api
- chromeos::ScreenLockConnection screen_lock_connection_;
- DISALLOW_COPY_AND_ASSIGN(ScreenLockLibraryImpl);
+ // Get library implementation.
+ static ScreenLockLibrary* GetImpl(bool stub);
};
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/power_library.cc ('k') | chrome/browser/chromeos/cros/screen_lock_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698