Chromium Code Reviews| 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_ | |
|
imcheng
2017/03/22 00:31:47
Insert empty line above
zhaobin
2017/03/22 01:55:32
Done.
| |
| 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 // UUID (UDN). | |
| 18 std::string unique_id; | |
| 19 | |
| 20 // Short user-friendly title. | |
| 21 std::string friendly_name; | |
| 22 | |
| 23 // Model name. | |
| 24 std::string model_name; | |
| 25 | |
| 26 // The reported device type, e.g. urn:dial-multiscreen-org:device:dial:1 | |
| 27 std::string device_type; | |
| 28 }; | |
| 29 | |
| 30 } // namespace media_router | |
| 31 | |
| 32 #endif // CHROME_COMMON_MEDIA_ROUTER_DIAL_DEVICE_DESCRIPTION_H_ | |
| OLD | NEW |