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

Side by Side Diff: chrome/browser/media/router/media_cast_mode.h

Issue 949293004: Add media router common classes and unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chunkier CL Created 5 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 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698