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

Side by Side Diff: chromeos/dbus/dbus_thread_manager.h

Issue 996013003: privetd: Expose dbus API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 #ifndef CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ 5 #ifndef CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_
6 #define CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ 6 #define CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 class LorgnetteManagerClient; 50 class LorgnetteManagerClient;
51 class MetronomeClient; 51 class MetronomeClient;
52 class ModemMessagingClient; 52 class ModemMessagingClient;
53 class NfcAdapterClient; 53 class NfcAdapterClient;
54 class NfcDeviceClient; 54 class NfcDeviceClient;
55 class NfcManagerClient; 55 class NfcManagerClient;
56 class NfcRecordClient; 56 class NfcRecordClient;
57 class NfcTagClient; 57 class NfcTagClient;
58 class PeerDaemonManagerClient; 58 class PeerDaemonManagerClient;
59 class PermissionBrokerClient; 59 class PermissionBrokerClient;
60 class PrivetDaemonManagerClient;
wtc 2015/03/17 17:31:05 Nit: list PrivetDaemonManagerClient after PowerMan
dtapuska 2015/03/18 14:28:53 Done.
60 class PowerManagerClient; 61 class PowerManagerClient;
61 class SessionManagerClient; 62 class SessionManagerClient;
62 class ShillDeviceClient; 63 class ShillDeviceClient;
63 class ShillIPConfigClient; 64 class ShillIPConfigClient;
64 class ShillManagerClient; 65 class ShillManagerClient;
65 class ShillProfileClient; 66 class ShillProfileClient;
66 class ShillServiceClient; 67 class ShillServiceClient;
67 class ShillThirdPartyVpnDriverClient; 68 class ShillThirdPartyVpnDriverClient;
68 class SMSClient; 69 class SMSClient;
69 class SystemClockClient; 70 class SystemClockClient;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 LorgnetteManagerClient* GetLorgnetteManagerClient(); 144 LorgnetteManagerClient* GetLorgnetteManagerClient();
144 MetronomeClient* GetMetronomeClient(); 145 MetronomeClient* GetMetronomeClient();
145 ModemMessagingClient* GetModemMessagingClient(); 146 ModemMessagingClient* GetModemMessagingClient();
146 NfcAdapterClient* GetNfcAdapterClient(); 147 NfcAdapterClient* GetNfcAdapterClient();
147 NfcDeviceClient* GetNfcDeviceClient(); 148 NfcDeviceClient* GetNfcDeviceClient();
148 NfcManagerClient* GetNfcManagerClient(); 149 NfcManagerClient* GetNfcManagerClient();
149 NfcRecordClient* GetNfcRecordClient(); 150 NfcRecordClient* GetNfcRecordClient();
150 NfcTagClient* GetNfcTagClient(); 151 NfcTagClient* GetNfcTagClient();
151 PeerDaemonManagerClient* GetPeerDaemonManagerClient(); 152 PeerDaemonManagerClient* GetPeerDaemonManagerClient();
152 PermissionBrokerClient* GetPermissionBrokerClient(); 153 PermissionBrokerClient* GetPermissionBrokerClient();
154 PrivetDaemonManagerClient* GetPrivetDaemonManagerClient();
153 PowerManagerClient* GetPowerManagerClient(); 155 PowerManagerClient* GetPowerManagerClient();
154 SessionManagerClient* GetSessionManagerClient(); 156 SessionManagerClient* GetSessionManagerClient();
155 ShillDeviceClient* GetShillDeviceClient(); 157 ShillDeviceClient* GetShillDeviceClient();
156 ShillIPConfigClient* GetShillIPConfigClient(); 158 ShillIPConfigClient* GetShillIPConfigClient();
157 ShillManagerClient* GetShillManagerClient(); 159 ShillManagerClient* GetShillManagerClient();
158 ShillServiceClient* GetShillServiceClient(); 160 ShillServiceClient* GetShillServiceClient();
159 ShillProfileClient* GetShillProfileClient(); 161 ShillProfileClient* GetShillProfileClient();
160 ShillThirdPartyVpnDriverClient* GetShillThirdPartyVpnDriverClient(); 162 ShillThirdPartyVpnDriverClient* GetShillThirdPartyVpnDriverClient();
161 SMSClient* GetSMSClient(); 163 SMSClient* GetSMSClient();
162 SystemClockClient* GetSystemClockClient(); 164 SystemClockClient* GetSystemClockClient();
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 void SetImageBurnerClient(scoped_ptr<ImageBurnerClient> client); 242 void SetImageBurnerClient(scoped_ptr<ImageBurnerClient> client);
241 void SetIntrospectableClient(scoped_ptr<IntrospectableClient> client); 243 void SetIntrospectableClient(scoped_ptr<IntrospectableClient> client);
242 void SetModemMessagingClient(scoped_ptr<ModemMessagingClient> client); 244 void SetModemMessagingClient(scoped_ptr<ModemMessagingClient> client);
243 void SetNfcAdapterClient(scoped_ptr<NfcAdapterClient> client); 245 void SetNfcAdapterClient(scoped_ptr<NfcAdapterClient> client);
244 void SetNfcDeviceClient(scoped_ptr<NfcDeviceClient> client); 246 void SetNfcDeviceClient(scoped_ptr<NfcDeviceClient> client);
245 void SetNfcManagerClient(scoped_ptr<NfcManagerClient> client); 247 void SetNfcManagerClient(scoped_ptr<NfcManagerClient> client);
246 void SetNfcRecordClient(scoped_ptr<NfcRecordClient> client); 248 void SetNfcRecordClient(scoped_ptr<NfcRecordClient> client);
247 void SetNfcTagClient(scoped_ptr<NfcTagClient> client); 249 void SetNfcTagClient(scoped_ptr<NfcTagClient> client);
248 void SetPeerDaemonManagerClient(scoped_ptr<PeerDaemonManagerClient> client); 250 void SetPeerDaemonManagerClient(scoped_ptr<PeerDaemonManagerClient> client);
249 void SetPermissionBrokerClient(scoped_ptr<PermissionBrokerClient> client); 251 void SetPermissionBrokerClient(scoped_ptr<PermissionBrokerClient> client);
252 void SetPrivetDaemonManagerClient(
253 scoped_ptr<PrivetDaemonManagerClient> client);
250 void SetPowerManagerClient(scoped_ptr<PowerManagerClient> client); 254 void SetPowerManagerClient(scoped_ptr<PowerManagerClient> client);
251 void SetSessionManagerClient(scoped_ptr<SessionManagerClient> client); 255 void SetSessionManagerClient(scoped_ptr<SessionManagerClient> client);
252 void SetSMSClient(scoped_ptr<SMSClient> client); 256 void SetSMSClient(scoped_ptr<SMSClient> client);
253 void SetSystemClockClient(scoped_ptr<SystemClockClient> client); 257 void SetSystemClockClient(scoped_ptr<SystemClockClient> client);
254 void SetUpdateEngineClient(scoped_ptr<UpdateEngineClient> client); 258 void SetUpdateEngineClient(scoped_ptr<UpdateEngineClient> client);
255 259
256 private: 260 private:
257 friend class DBusThreadManager; 261 friend class DBusThreadManager;
258 262
259 DBusThreadManagerSetter(); 263 DBusThreadManagerSetter();
260 264
261 DISALLOW_COPY_AND_ASSIGN(DBusThreadManagerSetter); 265 DISALLOW_COPY_AND_ASSIGN(DBusThreadManagerSetter);
262 }; 266 };
263 267
264 } // namespace chromeos 268 } // namespace chromeos
265 269
266 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ 270 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698