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

Side by Side Diff: chromecast/public/cast_media_shlib.h

Issue 1140583002: Adds new libcast_media shared library for cast_shell media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor reformat in media.gyp Created 5 years, 7 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
« chromecast/media/media.gyp ('K') | « chromecast/media/media.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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 CHROMECAST_PUBLIC_CAST_MEDIA_SHLIB_H_
6 #define CHROMECAST_PUBLIC_CAST_MEDIA_SHLIB_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "chromecast_export.h"
12
13 namespace chromecast {
14
15 class CHROMECAST_EXPORT CastMediaShlib {
16 public:
17 // Performs platform-specific one-time initialization for media systems and
18 // hardware resources. Called at startup in browser process before main
gunsch 2015/05/13 03:26:04 I think references to "browser process" here are i
halliwell 2015/05/13 03:43:33 True that it can be called in unit tests, but reme
19 // message loop begins.
20 static void Initialize(const std::vector<std::string>& argv);
21
22 // Performs platform-specific one-time teardown of media systems and hardware
23 // resources. Called at browser process exit.
24 static void Finalize();
25 };
26
27 } // namespace chromecast
28
29 #endif // CHROMECAST_PUBLIC_CAST_MEDIA_SHLIB_H_
OLDNEW
« chromecast/media/media.gyp ('K') | « chromecast/media/media.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698