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

Unified Diff: chromecast/common/media/cast_media_drm_bridge_client.cc

Issue 2756333002: Rename MediaClientAndroid to MediaDrmBridgeClient (Closed)
Patch Set: Fix .h guards 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/common/media/cast_media_drm_bridge_client.h ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/common/media/cast_media_drm_bridge_client.cc
diff --git a/chromecast/common/media/cast_media_client_android.cc b/chromecast/common/media/cast_media_drm_bridge_client.cc
similarity index 72%
rename from chromecast/common/media/cast_media_client_android.cc
rename to chromecast/common/media/cast_media_drm_bridge_client.cc
index f6d26d677c8fd4a8f21ca44d05fd24407fc07ac7..334a677c4190ea11447278f459186505940b5658 100644
--- a/chromecast/common/media/cast_media_client_android.cc
+++ b/chromecast/common/media/cast_media_drm_bridge_client.cc
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chromecast/common/media/cast_media_client_android.h"
+#include "chromecast/common/media/cast_media_drm_bridge_client.h"
#include "chromecast/media/base/key_systems_common.h"
namespace chromecast {
namespace media {
-CastMediaClientAndroid::CastMediaClientAndroid() {}
+CastMediaDrmBridgeClient::CastMediaDrmBridgeClient() {}
-CastMediaClientAndroid::~CastMediaClientAndroid() {}
+CastMediaDrmBridgeClient::~CastMediaDrmBridgeClient() {}
-void CastMediaClientAndroid::AddKeySystemUUIDMappings(KeySystemUuidMap* map) {
+void CastMediaDrmBridgeClient::AddKeySystemUUIDMappings(KeySystemUuidMap* map) {
// Note: MediaDrmBridge adds the Widevine UUID mapping automatically.
#if defined(PLAYREADY_CDM_AVAILABLE)
(*map)[kChromecastPlayreadyKeySystem] = playready_delegate_.GetUUID();
@@ -21,7 +21,7 @@ void CastMediaClientAndroid::AddKeySystemUUIDMappings(KeySystemUuidMap* map) {
}
::media::MediaDrmBridgeDelegate*
-CastMediaClientAndroid::GetMediaDrmBridgeDelegate(
+CastMediaDrmBridgeClient::GetMediaDrmBridgeDelegate(
const ::media::UUID& scheme_uuid) {
#if defined(PLAYREADY_CDM_AVAILABLE)
if (scheme_uuid == playready_delegate_.GetUUID())
« no previous file with comments | « chromecast/common/media/cast_media_drm_bridge_client.h ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698