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

Unified Diff: content/browser/media/android/browser_media_player_manager.h

Issue 193523002: Encrypted Media: Implement IPC based SetCdm(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase only Created 6 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
Index: content/browser/media/android/browser_media_player_manager.h
diff --git a/content/browser/media/android/browser_media_player_manager.h b/content/browser/media/android/browser_media_player_manager.h
index 235d9ce16f3be58989cc5ae40b2c9bf517d11bdf..8fa1b17323c02af16f76110e571b9e1459b3408f 100644
--- a/content/browser/media/android/browser_media_player_manager.h
+++ b/content/browser/media/android/browser_media_player_manager.h
@@ -5,7 +5,6 @@
#ifndef CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_
#define CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_
-#include <map>
#include <set>
#include <string>
#include <vector>
@@ -147,7 +146,7 @@ class CONTENT_EXPORT BrowserMediaPlayerManager
uint32 session_id,
const std::vector<uint8>& response);
void OnReleaseSession(int cdm_id, uint32 session_id);
- void OnSetMediaKeys(int player_id, int cdm_id);
+ void OnSetCdm(int player_id, int cdm_id);
void OnDestroyCdm(int cdm_id);
// Cancels all pending session creations associated with |cdm_id|.
@@ -220,7 +219,7 @@ class CONTENT_EXPORT BrowserMediaPlayerManager
// An array of managed media DRM bridges.
ScopedVector<media::MediaDrmBridge> drm_bridges_;
- // a set of media keys IDs that are pending approval or approved to access
+ // A set of media keys IDs that are pending approval or approved to access
// device DRM credentials.
// These 2 sets does not cover all the EME videos. If a video only streams
// clear data, it will not be included in either set.

Powered by Google App Engine
This is Rietveld 408576698