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

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: use mojo instead of IPC 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_
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698