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

Unified Diff: session_manager_service.cc

Issue 6591109: [login_manager] Add stub DBus API for policy get/set (Closed) Base URL: http://git.chromium.org/git/login_manager.git@master
Patch Set: Created 9 years, 10 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
« SessionManager.conf ('K') | « session_manager_service.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: session_manager_service.cc
diff --git a/session_manager_service.cc b/session_manager_service.cc
index ca195d8663487080ea4b1043caac8e5596d61a5a..d708ef1be3ff5b508b64271db640157f145f61fa 100644
--- a/session_manager_service.cc
+++ b/session_manager_service.cc
@@ -728,6 +728,18 @@ gboolean SessionManagerService::RetrieveProperty(gchar* name,
return TRUE;
}
+gboolean SessionManagerService::StorePolicy(gchar* policy_blob,
+ GArray* signature,
+ GError** error) {
+ return FALSE;
+}
+
+gboolean SessionManagerService::RetrievePolicy(gchar** OUT_policy_blob,
+ GArray** OUT_signature,
+ GError** error) {
+ return FALSE;
+}
+
gboolean SessionManagerService::LockScreen(GError** error) {
screen_locked_ = TRUE;
system_->SendSignalToChromium(chromium::kLockScreenSignal, NULL);
« SessionManager.conf ('K') | « session_manager_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698