Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Side by Side Diff: dbus/property.h

Issue 2421713002: arc: bluetooth: Expose missing advertise data. (Closed)
Patch Set: Add BlueZ unittests / more comment Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | dbus/property.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DBUS_PROPERTY_H_ 5 #ifndef DBUS_PROPERTY_H_
6 #define DBUS_PROPERTY_H_ 6 #define DBUS_PROPERTY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 CHROME_DBUS_EXPORT bool 615 CHROME_DBUS_EXPORT bool
616 Property<std::unordered_map<std::string, std::vector<uint8_t>>>:: 616 Property<std::unordered_map<std::string, std::vector<uint8_t>>>::
617 PopValueFromReader(MessageReader* reader); 617 PopValueFromReader(MessageReader* reader);
618 template <> 618 template <>
619 CHROME_DBUS_EXPORT void 619 CHROME_DBUS_EXPORT void
620 Property<std::unordered_map<std::string, std::vector<uint8_t>>>:: 620 Property<std::unordered_map<std::string, std::vector<uint8_t>>>::
621 AppendSetValueToWriter(MessageWriter* writer); 621 AppendSetValueToWriter(MessageWriter* writer);
622 extern template class CHROME_DBUS_EXPORT 622 extern template class CHROME_DBUS_EXPORT
623 Property<std::unordered_map<std::string, std::vector<uint8_t>>>; 623 Property<std::unordered_map<std::string, std::vector<uint8_t>>>;
624 624
625 template <>
626 CHROME_DBUS_EXPORT bool
627 Property<std::unordered_map<uint16_t, std::vector<uint8_t>>>::
628 PopValueFromReader(MessageReader* reader);
629 template <>
630 CHROME_DBUS_EXPORT void
631 Property<std::unordered_map<uint16_t, std::vector<uint8_t>>>::
632 AppendSetValueToWriter(MessageWriter* writer);
633 extern template class CHROME_DBUS_EXPORT
634 Property<std::unordered_map<uint16_t, std::vector<uint8_t>>>;
635
625 #pragma GCC diagnostic pop 636 #pragma GCC diagnostic pop
626 637
627 } // namespace dbus 638 } // namespace dbus
628 639
629 #endif // DBUS_PROPERTY_H_ 640 #endif // DBUS_PROPERTY_H_
OLDNEW
« no previous file with comments | « no previous file | dbus/property.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698