summaryrefslogtreecommitdiffstats
path: root/dbus/property.h
diff options
context:
space:
mode:
authorarmansito@chromium.org <armansito@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-15 07:40:49 +0000
committerarmansito@chromium.org <armansito@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-15 07:40:49 +0000
commitebbfffa2f19d6d4727586710dd49be63fcd8e1e2 (patch)
treeca18177ab6074fd42aa589b53581ad7ca8d67983 /dbus/property.h
parentdf42c35236e9570d64477009bf89fb42baee7b60 (diff)
downloadchromium_src-ebbfffa2f19d6d4727586710dd49be63fcd8e1e2.zip
chromium_src-ebbfffa2f19d6d4727586710dd49be63fcd8e1e2.tar.gz
chromium_src-ebbfffa2f19d6d4727586710dd49be63fcd8e1e2.tar.bz2
dbus: Add template specialization for Property<vector<uint8> >.
BUG=351229 TEST=dbus_unittests Review URL: https://codereview.chromium.org/199573003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257315 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/property.h')
-rw-r--r--dbus/property.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/dbus/property.h b/dbus/property.h
index 9f5af48..f6baffc 100644
--- a/dbus/property.h
+++ b/dbus/property.h
@@ -466,6 +466,11 @@ template <> bool Property<std::vector<ObjectPath> >::PopValueFromReader(
template <> void Property<std::vector<ObjectPath> >::AppendSetValueToWriter(
MessageWriter* writer);
+template <> bool Property<std::vector<uint8> >::PopValueFromReader(
+ MessageReader* reader);
+template <> void Property<std::vector<uint8> >::AppendSetValueToWriter(
+ MessageWriter* writer);
+
} // namespace dbus
#endif // DBUS_PROPERTY_H_