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

Unified Diff: chromecast/media/cdm/browser_cdm_cast.h

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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
Index: chromecast/media/cdm/browser_cdm_cast.h
diff --git a/chromecast/media/cdm/browser_cdm_cast.h b/chromecast/media/cdm/browser_cdm_cast.h
index 0e24a518975221a992d464af2cee3095f5a1140c..a4c80fb748a8a078d9a07cf80c9e3c6814b0f7b5 100644
--- a/chromecast/media/cdm/browser_cdm_cast.h
+++ b/chromecast/media/cdm/browser_cdm_cast.h
@@ -28,7 +28,7 @@ class PlayerTrackerImpl;
namespace chromecast {
namespace media {
-class DecryptContext;
+class DecryptContextImpl;
// BrowserCdmCast is an extension of BrowserCdm that provides common
// functionality across CDM implementations.
@@ -60,7 +60,7 @@ class BrowserCdmCast : public ::media::BrowserCdm {
// Returns the decryption context needed to decrypt frames encrypted with
// |key_id|.
// Returns null if |key_id| is not available.
- virtual scoped_refptr<DecryptContext> GetDecryptContext(
+ virtual scoped_ptr<DecryptContextImpl> GetDecryptContext(
const std::string& key_id) const = 0;
protected:

Powered by Google App Engine
This is Rietveld 408576698