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

Side by Side Diff: chrome/common/media_router/dial_device_description.h

Issue 2745653008: [Media Router] Parse device description xml in utility process (Closed)
Patch Set: resolve code review comments from Mark Created 3 years, 9 months 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698