| OLD | NEW |
| 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 > bindings/server.h | 8 > 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 Loading... |
| 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> |
| OLD | NEW |