OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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_BROWSER_MEDIA_ROUTER_MEDIA_CAST_MODE_H_ | |
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_CAST_MODE_H_ | |
7 | |
8 #include <string> | |
9 | |
10 namespace media_router { | |
11 | |
12 // Represents available cast modes. | |
13 enum MediaCastMode { | |
mark a. foltz
2015/02/27 05:48:10
Per discussion with imcheng@ today this is really
Kevin M
2015/02/27 18:42:17
Done.
| |
14 APP_CAST, | |
15 SCREEN_WINDOW_MIRROR, | |
16 SOUND_OPTIMIZED_TAB_MIRROR, | |
17 TAB_MIRROR, | |
18 }; | |
19 | |
20 std::string MediaCastModeToTitle(MediaCastMode mode); | |
21 | |
22 } // namespace media_router | |
23 | |
24 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_CAST_MODE_H_ | |
OLD | NEW |