| Index: dbus/exported_object.h
|
| diff --git a/dbus/exported_object.h b/dbus/exported_object.h
|
| index c897ea6a5e9b1de5940d17f3701591e34a243202..9d3164fcca0e1974057dd47d687d04d017fc5f39 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.
|
|
|