| Index: dbus/object_path.h
|
| diff --git a/dbus/object_path.h b/dbus/object_path.h
|
| index 9789b938d6060ff6c4cf7489dad733970b67be41..89c5287c54a6706850d8ecb0f6007ed1f3e29826 100644
|
| --- a/dbus/object_path.h
|
| +++ b/dbus/object_path.h
|
| @@ -7,13 +7,15 @@
|
|
|
| #include <string>
|
|
|
| +#include "dbus/dbus_export.h"
|
| +
|
| namespace dbus {
|
|
|
| // ObjectPath is a type used to distinguish D-Bus object paths from simple
|
| // strings, especially since normal practice is that these should be only
|
| // initialized from static constants or obtained from remote objects and no
|
| // assumptions about their value made.
|
| -class ObjectPath {
|
| +class CHROME_DBUS_EXPORT ObjectPath {
|
| public:
|
| // Permit initialization without a value for passing to
|
| // dbus::MessageReader::PopObjectPath to fill in and from std::string
|
| @@ -39,6 +41,7 @@ class ObjectPath {
|
| // observers.
|
| bool operator==(const ObjectPath&) const;
|
| bool operator!=(const ObjectPath&) const;
|
| +
|
| private:
|
| std::string value_;
|
| };
|
|
|