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

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

Issue 12605008: D-Bus Clients for BlueZ 5 API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mock dbus thread manager without gmock? I didn't even know that was a thing! Created 7 years, 8 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
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/dbus/dbus_thread_manager.cc » ('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) 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 17 matching lines...) Expand all
28 // Style Note: Clients are sorted by names. 28 // Style Note: Clients are sorted by names.
29 class BluetoothAdapterClient; 29 class BluetoothAdapterClient;
30 class BluetoothDeviceClient; 30 class BluetoothDeviceClient;
31 class BluetoothInputClient; 31 class BluetoothInputClient;
32 class BluetoothManagerClient; 32 class BluetoothManagerClient;
33 class BluetoothNodeClient; 33 class BluetoothNodeClient;
34 class BluetoothOutOfBandClient; 34 class BluetoothOutOfBandClient;
35 class CrosDisksClient; 35 class CrosDisksClient;
36 class CryptohomeClient; 36 class CryptohomeClient;
37 class DebugDaemonClient; 37 class DebugDaemonClient;
38 class ExperimentalBluetoothAdapterClient;
39 class ExperimentalBluetoothAgentManagerClient;
40 class ExperimentalBluetoothDeviceClient;
41 class ExperimentalBluetoothProfileManagerClient;
38 class GsmSMSClient; 42 class GsmSMSClient;
39 class IBusClient; 43 class IBusClient;
40 class IBusConfigClient; 44 class IBusConfigClient;
41 class IBusEngineFactoryService; 45 class IBusEngineFactoryService;
42 class IBusEngineService; 46 class IBusEngineService;
43 class IBusInputContextClient; 47 class IBusInputContextClient;
44 class IBusPanelService; 48 class IBusPanelService;
45 class ImageBurnerClient; 49 class ImageBurnerClient;
46 class IntrospectableClient; 50 class IntrospectableClient;
47 class ModemMessagingClient; 51 class ModemMessagingClient;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 // pointers and use them after DBusThreadManager has been shut down. 126 // pointers and use them after DBusThreadManager has been shut down.
123 virtual BluetoothAdapterClient* GetBluetoothAdapterClient() = 0; 127 virtual BluetoothAdapterClient* GetBluetoothAdapterClient() = 0;
124 virtual BluetoothDeviceClient* GetBluetoothDeviceClient() = 0; 128 virtual BluetoothDeviceClient* GetBluetoothDeviceClient() = 0;
125 virtual BluetoothInputClient* GetBluetoothInputClient() = 0; 129 virtual BluetoothInputClient* GetBluetoothInputClient() = 0;
126 virtual BluetoothManagerClient* GetBluetoothManagerClient() = 0; 130 virtual BluetoothManagerClient* GetBluetoothManagerClient() = 0;
127 virtual BluetoothNodeClient* GetBluetoothNodeClient() = 0; 131 virtual BluetoothNodeClient* GetBluetoothNodeClient() = 0;
128 virtual BluetoothOutOfBandClient* GetBluetoothOutOfBandClient() = 0; 132 virtual BluetoothOutOfBandClient* GetBluetoothOutOfBandClient() = 0;
129 virtual CrosDisksClient* GetCrosDisksClient() = 0; 133 virtual CrosDisksClient* GetCrosDisksClient() = 0;
130 virtual CryptohomeClient* GetCryptohomeClient() = 0; 134 virtual CryptohomeClient* GetCryptohomeClient() = 0;
131 virtual DebugDaemonClient* GetDebugDaemonClient() = 0; 135 virtual DebugDaemonClient* GetDebugDaemonClient() = 0;
136 virtual ExperimentalBluetoothAdapterClient*
137 GetExperimentalBluetoothAdapterClient() = 0;
138 virtual ExperimentalBluetoothAgentManagerClient*
139 GetExperimentalBluetoothAgentManagerClient() = 0;
140 virtual ExperimentalBluetoothDeviceClient*
141 GetExperimentalBluetoothDeviceClient() = 0;
142 virtual ExperimentalBluetoothProfileManagerClient*
143 GetExperimentalBluetoothProfileManagerClient() = 0;
132 virtual GsmSMSClient* GetGsmSMSClient() = 0; 144 virtual GsmSMSClient* GetGsmSMSClient() = 0;
133 virtual IBusClient* GetIBusClient() = 0; 145 virtual IBusClient* GetIBusClient() = 0;
134 virtual IBusConfigClient* GetIBusConfigClient() = 0; 146 virtual IBusConfigClient* GetIBusConfigClient() = 0;
135 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() = 0; 147 virtual IBusEngineFactoryService* GetIBusEngineFactoryService() = 0;
136 virtual IBusEngineService* GetIBusEngineService( 148 virtual IBusEngineService* GetIBusEngineService(
137 const dbus::ObjectPath& object_path) = 0; 149 const dbus::ObjectPath& object_path) = 0;
138 virtual IBusInputContextClient* GetIBusInputContextClient() = 0; 150 virtual IBusInputContextClient* GetIBusInputContextClient() = 0;
139 virtual IBusPanelService* GetIBusPanelService() = 0; 151 virtual IBusPanelService* GetIBusPanelService() = 0;
140 virtual ImageBurnerClient* GetImageBurnerClient() = 0; 152 virtual ImageBurnerClient* GetImageBurnerClient() = 0;
141 virtual IntrospectableClient* GetIntrospectableClient() = 0; 153 virtual IntrospectableClient* GetIntrospectableClient() = 0;
(...skipping 18 matching lines...) Expand all
160 172
161 protected: 173 protected:
162 DBusThreadManager(); 174 DBusThreadManager();
163 175
164 DISALLOW_COPY_AND_ASSIGN(DBusThreadManager); 176 DISALLOW_COPY_AND_ASSIGN(DBusThreadManager);
165 }; 177 };
166 178
167 } // namespace chromeos 179 } // namespace chromeos
168 180
169 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_ 181 #endif // CHROMEOS_DBUS_DBUS_THREAD_MANAGER_H_
OLDNEW
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/dbus/dbus_thread_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698