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

Side by Side Diff: interface.cc

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.h ('k') | session_manager.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "login_manager/interface.h" 5 #include "login_manager/interface.h"
6 6
7 namespace login_manager { 7 namespace login_manager {
8 namespace gobject { 8 namespace gobject {
9 9
10 // Register with the glib type system. 10 // Register with the glib type system.
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 GError **error) { 129 GError **error) {
130 SESSION_MANAGER_WRAP_METHOD0(UnlockScreen); 130 SESSION_MANAGER_WRAP_METHOD0(UnlockScreen);
131 } 131 }
132 gboolean session_manager_restart_job(SessionManager* self, 132 gboolean session_manager_restart_job(SessionManager* self,
133 gint pid, 133 gint pid,
134 gchar* arguments, 134 gchar* arguments,
135 gboolean* OUT_done, 135 gboolean* OUT_done,
136 GError** error) { 136 GError** error) {
137 SESSION_MANAGER_WRAP_METHOD(RestartJob, pid, arguments, OUT_done); 137 SESSION_MANAGER_WRAP_METHOD(RestartJob, pid, arguments, OUT_done);
138 } 138 }
139 gboolean session_manager_restart_entd(SessionManager* self,
140 GError** error) {
141 SESSION_MANAGER_WRAP_METHOD0(RestartEntd);
142 }
139 143
140 #undef SESSION_MANAGER_WRAP_METHOD 144 #undef SESSION_MANAGER_WRAP_METHOD
141 145
142 } // namespace gobject 146 } // namespace gobject
143 } // namespace login_manager 147 } // namespace login_manager
OLDNEW
« no previous file with comments | « interface.h ('k') | session_manager.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698