summaryrefslogtreecommitdiffstats
path: root/dbus/exported_object.h
diff options
context:
space:
mode:
authorsatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-04 13:47:21 +0000
committersatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-04 13:47:21 +0000
commit1d887b27477d3b8af67ff392d704b430fa9a4c08 (patch)
tree3c9ff0bb7b99ff849a68b5a331f8dd3671aefa13 /dbus/exported_object.h
parent2e99f7c101980a8958b28d990b6eb1ee385be35c (diff)
downloadchromium_src-1d887b27477d3b8af67ff392d704b430fa9a4c08.zip
chromium_src-1d887b27477d3b8af67ff392d704b430fa9a4c08.tar.gz
chromium_src-1d887b27477d3b8af67ff392d704b430fa9a4c08.tar.bz2
Eliminate hacks needed to work around a limitation of base::Bind()
base::Bind() used to be unable to handle opaque type pointers, but the limitation was fixed in crrev.com/103627. BUG=crosbug.com/21166 TEST=build and run dbus_unittests Review URL: http://codereview.chromium.org/8124002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103881 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/exported_object.h')
-rw-r--r--dbus/exported_object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/exported_object.h b/dbus/exported_object.h
index 41e8eec..a6edb97 100644
--- a/dbus/exported_object.h
+++ b/dbus/exported_object.h
@@ -108,7 +108,7 @@ class ExportedObject : public base::RefCountedThreadSafe<ExportedObject> {
// Helper function for SendSignal().
void SendSignalInternal(base::TimeTicks start_time,
- void* signal_message);
+ DBusMessage* signal_message);
// Registers this object to the bus.
// Returns true on success, or the object is already registered.