| Index: dbus/property.h
|
| diff --git a/dbus/property.h b/dbus/property.h
|
| index efbad226a69d16333ea49b5911e4ef2f659aa519..616a59514835b57f067dd93c21da4cc8772c244f 100644
|
| --- a/dbus/property.h
|
| +++ b/dbus/property.h
|
| @@ -9,6 +9,7 @@
|
|
|
| #include <map>
|
| #include <string>
|
| +#include <unordered_map>
|
| #include <utility>
|
| #include <vector>
|
|
|
| @@ -610,6 +611,17 @@ Property<std::vector<std::pair<std::vector<uint8_t>, uint16_t>>>::
|
| extern template class CHROME_DBUS_EXPORT
|
| Property<std::vector<std::pair<std::vector<uint8_t>, uint16_t>>>;
|
|
|
| +template <>
|
| +CHROME_DBUS_EXPORT bool
|
| +Property<std::unordered_map<std::string, std::vector<uint8_t>>>::
|
| + PopValueFromReader(MessageReader* reader);
|
| +template <>
|
| +CHROME_DBUS_EXPORT void
|
| +Property<std::unordered_map<std::string, std::vector<uint8_t>>>::
|
| + AppendSetValueToWriter(MessageWriter* writer);
|
| +extern template class CHROME_DBUS_EXPORT
|
| + Property<std::unordered_map<std::string, std::vector<uint8_t>>>;
|
| +
|
| #pragma GCC diagnostic pop
|
|
|
| } // namespace dbus
|
|
|