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

Side by Side Diff: chromecast/common/media/cast_media_client.h

Issue 2723833002: WebM support for new multipart VP9 string. (Closed)
Patch Set: Use latest ordering (9 parts), Plumb eotf to media client 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMECAST_COMMON_MEDIA_CAST_MEDIA_CLIENT_H_ 5 #ifndef CHROMECAST_COMMON_MEDIA_CAST_MEDIA_CLIENT_H_
6 #define CHROMECAST_COMMON_MEDIA_CAST_MEDIA_CLIENT_H_ 6 #define CHROMECAST_COMMON_MEDIA_CAST_MEDIA_CLIENT_H_
7 7
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "chromecast/media/base/supported_codec_profile_levels_memo.h" 10 #include "chromecast/media/base/supported_codec_profile_levels_memo.h"
(...skipping 14 matching lines...) Expand all
25 // MediaClient implementation 25 // MediaClient implementation
26 void AddKeySystemsInfoForUMA(std::vector<::media::KeySystemInfoForUMA>* 26 void AddKeySystemsInfoForUMA(std::vector<::media::KeySystemInfoForUMA>*
27 key_systems_info_for_uma) override; 27 key_systems_info_for_uma) override;
28 bool IsKeySystemsUpdateNeeded() override; 28 bool IsKeySystemsUpdateNeeded() override;
29 void AddSupportedKeySystems( 29 void AddSupportedKeySystems(
30 std::vector<std::unique_ptr<::media::KeySystemProperties>>* 30 std::vector<std::unique_ptr<::media::KeySystemProperties>>*
31 key_systems_properties) override; 31 key_systems_properties) override;
32 void RecordRapporURL(const std::string& metric, const GURL& url) override; 32 void RecordRapporURL(const std::string& metric, const GURL& url) override;
33 bool IsSupportedVideoConfig(::media::VideoCodec codec, 33 bool IsSupportedVideoConfig(::media::VideoCodec codec,
34 ::media::VideoCodecProfile profile, 34 ::media::VideoCodecProfile profile,
35 int level) override; 35 int level,
36 gfx::ColorSpace::TransferID eotf) override;
36 37
37 private: 38 private:
38 friend struct base::DefaultLazyInstanceTraits<CastMediaClient>; 39 friend struct base::DefaultLazyInstanceTraits<CastMediaClient>;
39 40
40 CastMediaClient(::media::MediaClient* content_media_client, 41 CastMediaClient(::media::MediaClient* content_media_client,
41 SupportedCodecProfileLevelsMemo* supported_profiles); 42 SupportedCodecProfileLevelsMemo* supported_profiles);
42 ~CastMediaClient() override; 43 ~CastMediaClient() override;
43 44
44 ::media::MediaClient* content_media_client_; 45 ::media::MediaClient* content_media_client_;
45 SupportedCodecProfileLevelsMemo* supported_profiles_; 46 SupportedCodecProfileLevelsMemo* supported_profiles_;
46 47
47 DISALLOW_COPY_AND_ASSIGN(CastMediaClient); 48 DISALLOW_COPY_AND_ASSIGN(CastMediaClient);
48 }; 49 };
49 50
50 } // namespace media 51 } // namespace media
51 } // namespace chromecast 52 } // namespace chromecast
52 53
53 #endif // CHROMECAST_COMMON_MEDIA_CAST_MEDIA_CLIENT_H_ 54 #endif // CHROMECAST_COMMON_MEDIA_CAST_MEDIA_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chromecast/common/media/cast_media_client.cc » ('j') | chromecast/common/media/cast_media_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698