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

Side by Side Diff: session_manager.xml

Issue 5184005: login_manager: Add dbus API for restarting entd when enterprise extensions installed (Closed) Base URL: http://git.chromium.org/git/login_manager.git@master
Patch Set: Respond to cmasone review Created 10 years, 1 month 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
« no previous file with comments | « interface.cc ('k') | session_manager_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 <method name="StoreProperty"> 47 <method name="StoreProperty">
48 <arg type="s" name="name" direction="in" /> 48 <arg type="s" name="name" direction="in" />
49 <arg type="s" name="value" direction="in" /> 49 <arg type="s" name="value" direction="in" />
50 <arg type="ay" name="signature" direction="in" /> 50 <arg type="ay" name="signature" direction="in" />
51 </method> 51 </method>
52 <method name="RetrieveProperty"> 52 <method name="RetrieveProperty">
53 <arg type="s" name="name" direction="in" /> 53 <arg type="s" name="name" direction="in" />
54 <arg type="s" name="value" direction="out" /> 54 <arg type="s" name="value" direction="out" />
55 <arg type="ay" name="signature" direction="out" /> 55 <arg type="ay" name="signature" direction="out" />
56 </method> 56 </method>
57 <method name="RestartEntd">
58 </method>
57 <signal name="SessionStateChanged"> 59 <signal name="SessionStateChanged">
58 <!-- started, stopped --> 60 <!-- started, stopped -->
59 <arg type="s" name="state" /> 61 <arg type="s" name="state" />
60 <!-- user whose session is starting or stopping (empty for guest) --> 62 <!-- user whose session is starting or stopping (empty for guest) -->
61 <arg type="s" name="user" /> 63 <arg type="s" name="user" />
62 </signal> 64 </signal>
63 <method name="LockScreen"> 65 <method name="LockScreen">
64 <!-- Lock screen --> 66 <!-- Lock screen -->
65 </method> 67 </method>
66 <method name="UnlockScreen"> 68 <method name="UnlockScreen">
67 <!-- Unlock screen --> 69 <!-- Unlock screen -->
68 </method> 70 </method>
69 <method name="RestartJob"> 71 <method name="RestartJob">
70 <!-- PID of the job to restart --> 72 <!-- PID of the job to restart -->
71 <arg type="i" name="pid" direction="in" /> 73 <arg type="i" name="pid" direction="in" />
72 <!-- Command line arguments to restart the job with --> 74 <!-- Command line arguments to restart the job with -->
73 <arg type="s" name="command_line" direction="in" /> 75 <arg type="s" name="command_line" direction="in" />
74 <arg type="b" name="done" direction="out" /> 76 <arg type="b" name="done" direction="out" />
75 </method> 77 </method>
76 </interface> 78 </interface>
77 </node> 79 </node>
OLDNEW
« no previous file with comments | « interface.cc ('k') | session_manager_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698