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

Unified Diff: chromeos/dbus/session_manager_client.h

Issue 23694025: Remove calls to deprecated session_manager DBus methods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix use-after-free in tests. Created 7 years, 3 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 | « chromeos/dbus/mock_session_manager_client.h ('k') | chromeos/dbus/session_manager_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/session_manager_client.h
diff --git a/chromeos/dbus/session_manager_client.h b/chromeos/dbus/session_manager_client.h
index f09a0416f22e4c38c6a42a54a5851fe3bee2a3c4..4d1dc14818e797bd92f1c66b7734c0f3649bced6 100644
--- a/chromeos/dbus/session_manager_client.h
+++ b/chromeos/dbus/session_manager_client.h
@@ -34,10 +34,6 @@ class CHROMEOS_EXPORT SessionManagerClient : public DBusClient {
// session manager).
virtual void LockScreen() {}
- // Called when the session manager requests that the lock screen be
- // dismissed. NotifyLockScreenDismissed() is called afterward.
- virtual void UnlockScreen() {}
-
// Called when the session manager announces that the screen has been locked
// successfully (i.e. after NotifyLockScreenShown() has been called).
virtual void ScreenIsLocked() {}
@@ -62,10 +58,6 @@ class CHROMEOS_EXPORT SessionManagerClient : public DBusClient {
// Restarts a job referenced by |pid| with the provided command line.
virtual void RestartJob(int pid, const std::string& command_line) = 0;
- // Restarts entd (the enterprise daemon).
- // DEPRECATED: will be deleted soon.
- virtual void RestartEntd() = 0;
-
// Starts the session for the user.
virtual void StartSession(const std::string& user_email) = 0;
@@ -81,9 +73,6 @@ class CHROMEOS_EXPORT SessionManagerClient : public DBusClient {
// Notifies that the lock screen is shown.
virtual void NotifyLockScreenShown() = 0;
- // Unlocks the screen.
- virtual void RequestUnlockScreen() = 0;
-
// Notifies that the lock screen is dismissed.
virtual void NotifyLockScreenDismissed() = 0;
« no previous file with comments | « chromeos/dbus/mock_session_manager_client.h ('k') | chromeos/dbus/session_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698