summaryrefslogtreecommitdiffstats
path: root/dbus/bus.h
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-22 10:12:45 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-22 18:13:52 +0000
commit22437c690d92b7440913d190bf5474785ccd73ec (patch)
tree76dbcdd2610bc4deb60e3d4954a14c4d1abc9ff6 /dbus/bus.h
parent73a178bda739c022e3d2ecd79f1c2c1e3e574aa6 (diff)
downloadchromium_src-22437c690d92b7440913d190bf5474785ccd73ec.zip
chromium_src-22437c690d92b7440913d190bf5474785ccd73ec.tar.gz
chromium_src-22437c690d92b7440913d190bf5474785ccd73ec.tar.bz2
Switch to standard integer types in dbus/.
BUG=138542 TBR=hashimoto@chromium.org Review URL: https://codereview.chromium.org/1541193002 Cr-Commit-Position: refs/heads/master@{#366617}
Diffstat (limited to 'dbus/bus.h')
-rw-r--r--dbus/bus.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/dbus/bus.h b/dbus/bus.h
index 27d149c..e5e0b1c 100644
--- a/dbus/bus.h
+++ b/dbus/bus.h
@@ -6,6 +6,7 @@
#define DBUS_BUS_H_
#include <dbus/dbus.h>
+#include <stdint.h>
#include <map>
#include <set>
@@ -14,6 +15,7 @@
#include <vector>
#include "base/callback.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/platform_thread.h"
@@ -462,7 +464,7 @@ class CHROME_DBUS_EXPORT Bus : public base::RefCountedThreadSafe<Bus> {
// be stored in |serial|.
//
// BLOCKING CALL.
- virtual void Send(DBusMessage* request, uint32* serial);
+ virtual void Send(DBusMessage* request, uint32_t* serial);
// Adds the message filter function. |filter_function| will be called
// when incoming messages are received.