| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_COMMON_MEDIA_ROUTER_DIAL_DEVICE_DESCRIPTION_H_ |
| 6 #define CHROME_COMMON_MEDIA_ROUTER_DIAL_DEVICE_DESCRIPTION_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 namespace media_router { |
| 11 |
| 12 // Represents a DIAL device description. |
| 13 struct DialDeviceDescription { |
| 14 DialDeviceDescription(); |
| 15 DialDeviceDescription(const DialDeviceDescription& other); |
| 16 ~DialDeviceDescription(); |
| 17 |
| 18 // UUID (UDN). |
| 19 std::string unique_id; |
| 20 |
| 21 // Short user-friendly title. |
| 22 std::string friendly_name; |
| 23 |
| 24 // Model name. |
| 25 std::string model_name; |
| 26 |
| 27 // The reported device type, e.g. urn:dial-multiscreen-org:device:dial:1 |
| 28 std::string device_type; |
| 29 }; |
| 30 |
| 31 } // namespace media_router |
| 32 |
| 33 #endif // CHROME_COMMON_MEDIA_ROUTER_DIAL_DEVICE_DESCRIPTION_H_ |
| OLD | NEW |