Home | History | Annotate | Download | only in dbus

Lines Matching refs:Bus

49 #include "dbus/bus.h"
63 // Create the D-Bus thread.
66 dbus_thread_.reset(new base::Thread("D-Bus thread"));
69 // Create the connection to the system bus.
70 dbus::Bus::Options system_bus_options;
71 system_bus_options.bus_type = dbus::Bus::SYSTEM;
72 system_bus_options.connection_type = dbus::Bus::PRIVATE;
74 system_bus_ = new dbus::Bus(system_bus_options);
86 // Delete all D-Bus clients before shutting down the system bus.
89 // Shut down the bus. During the browser shutdown, it's ok to shut down
90 // the bus synchronously.
94 // Stop the D-Bus thread.
114 dbus::Bus* DBusThreadManager::GetSystemBus() {