Bug 1246931: Include dbus.h in DBus IPC headers, r=shuang

The header files for DBus IPC forward declare several DBus types in
a way that interferes with the actual declarations. It's better to
include the DBus headers directly
This commit is contained in:
Thomas Zimmermann 2016-04-12 16:14:39 +02:00
Родитель 152965fcb0
Коммит a35d2c01a5
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -19,6 +19,7 @@
#ifndef mozilla_ipc_dbus_dbusutils_h__
#define mozilla_ipc_dbus_dbusutils_h__
#include <dbus/dbus.h>
#include "mozilla/RefPtr.h"
// LOGE and free a D-Bus error
@ -26,9 +27,6 @@
#define LOG_AND_FREE_DBUS_ERROR_WITH_MSG(err, msg) log_and_free_dbus_error(err, __FUNCTION__, msg);
#define LOG_AND_FREE_DBUS_ERROR(err) log_and_free_dbus_error(err, __FUNCTION__);
struct DBusError;
struct DBusMessage;
namespace mozilla {
namespace ipc {