| 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 #ifndef CHROME_COMMON_MEDIA_ROUTER_DIAL_DEVICE_DESCRIPTION_H_ |
| 5 #define CHROME_COMMON_MEDIA_ROUTER_DIAL_DEVICE_DESCRIPTION_H_ |
| 6 |
| 7 #include <string> |
| 8 |
| 9 namespace media_router { |
| 10 |
| 11 // Represents a DIAL device description. |
| 12 struct DialDeviceDescription { |
| 13 DialDeviceDescription(); |
| 14 DialDeviceDescription(const DialDeviceDescription& other); |
| 15 ~DialDeviceDescription(); |
| 16 |
| 17 std::string unique_id; |
| 18 std::string friendly_name; |
| 19 std::string model_name; |
| 20 std::string device_type; |
| 21 }; |
| 22 |
| 23 } // namespace media_router |
| 24 |
| 25 #endif // CHROME_COMMON_MEDIA_ROUTER_DIAL_DEVICE_DESCRIPTION_H_ |
| OLD | NEW |