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

Side by Side Diff: session_manager.xml

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, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8" ?> 1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!-- 2 <!--
3 Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 3 Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 6
7 dbus-binding-tool -mode=glib-server -prefix=session_manager session_manager .xml 7 dbus-binding-tool -mode=glib-server -prefix=session_manager session_manager .xml
8 &gt; bindings/server.h 8 &gt; bindings/server.h
9 --> 9 -->
10 <node name="/org/chromium/"> 10 <node name="/org/chromium/">
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 <method name="StoreProperty"> 54 <method name="StoreProperty">
55 <arg type="s" name="name" direction="in" /> 55 <arg type="s" name="name" direction="in" />
56 <arg type="s" name="value" direction="in" /> 56 <arg type="s" name="value" direction="in" />
57 <arg type="ay" name="signature" direction="in" /> 57 <arg type="ay" name="signature" direction="in" />
58 </method> 58 </method>
59 <method name="RetrieveProperty"> 59 <method name="RetrieveProperty">
60 <arg type="s" name="name" direction="in" /> 60 <arg type="s" name="name" direction="in" />
61 <arg type="s" name="value" direction="out" /> 61 <arg type="s" name="value" direction="out" />
62 <arg type="ay" name="signature" direction="out" /> 62 <arg type="ay" name="signature" direction="out" />
63 </method> 63 </method>
64 <method name="StorePolicy">
65 <arg type="s" name="policy_blob" direction="in" />
66 <arg type="ay" name="signature" direction="in" />
67 </method>
68 <method name="RetrievePolicy">
69 <arg type="s" name="policy_blob" direction="in" />
70 <arg type="ay" name="signature" direction="out" />
71 </method>
64 <method name="RestartEntd"> 72 <method name="RestartEntd">
65 </method> 73 </method>
66 <signal name="SessionStateChanged"> 74 <signal name="SessionStateChanged">
67 <!-- started, stopped --> 75 <!-- started, stopped -->
68 <arg type="s" name="state" /> 76 <arg type="s" name="state" />
69 <!-- user whose session is starting or stopping (empty for guest) --> 77 <!-- user whose session is starting or stopping (empty for guest) -->
70 <arg type="s" name="user" /> 78 <arg type="s" name="user" />
71 </signal> 79 </signal>
72 <method name="LockScreen"> 80 <method name="LockScreen">
73 <!-- Lock screen --> 81 <!-- Lock screen -->
74 </method> 82 </method>
75 <method name="UnlockScreen"> 83 <method name="UnlockScreen">
76 <!-- Unlock screen --> 84 <!-- Unlock screen -->
77 </method> 85 </method>
78 <method name="RestartJob"> 86 <method name="RestartJob">
79 <!-- PID of the job to restart --> 87 <!-- PID of the job to restart -->
80 <arg type="i" name="pid" direction="in" /> 88 <arg type="i" name="pid" direction="in" />
81 <!-- Command line arguments to restart the job with --> 89 <!-- Command line arguments to restart the job with -->
82 <arg type="s" name="command_line" direction="in" /> 90 <arg type="s" name="command_line" direction="in" />
83 <arg type="b" name="done" direction="out" /> 91 <arg type="b" name="done" direction="out" />
84 </method> 92 </method>
85 </interface> 93 </interface>
86 </node> 94 </node>
OLDNEW
« SessionManager.conf ('K') | « interface.cc ('k') | session_manager_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698