summaryrefslogtreecommitdiffstats
path: root/dbus/exported_object.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 01:56:14 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 01:56:14 +0000
commite3024465ac38cafd6ef30c4e08c107acef249b94 (patch)
tree315c4c3c86753ef6fc8215e220a3c192f21e2d8c /dbus/exported_object.h
parentaaf2a32109d62ae6f96cc83263370a824ee85a6d (diff)
downloadchromium_src-e3024465ac38cafd6ef30c4e08c107acef249b94.zip
chromium_src-e3024465ac38cafd6ef30c4e08c107acef249b94.tar.gz
chromium_src-e3024465ac38cafd6ef30c4e08c107acef249b94.tar.bz2
dbus: Make it possible to build as shared_library.
BUG=158887 R=satorux@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/11364033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165893 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/exported_object.h')
-rw-r--r--dbus/exported_object.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/dbus/exported_object.h b/dbus/exported_object.h
index c897ea6..9d3164f 100644
--- a/dbus/exported_object.h
+++ b/dbus/exported_object.h
@@ -16,6 +16,7 @@
#include "base/synchronization/waitable_event.h"
#include "base/threading/platform_thread.h"
#include "base/time.h"
+#include "dbus/dbus_export.h"
#include "dbus/object_path.h"
namespace dbus {
@@ -30,7 +31,8 @@ class Signal;
//
// ExportedObject is a ref counted object, to ensure that |this| of the
// object is alive when callbacks referencing |this| are called.
-class ExportedObject : public base::RefCountedThreadSafe<ExportedObject> {
+class CHROME_DBUS_EXPORT ExportedObject
+ : public base::RefCountedThreadSafe<ExportedObject> {
public:
// Client code should use Bus::GetExportedObject() instead of this
// constructor.