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

Unified Diff: content/renderer/media/webcontentdecryptionmodule_impl.h

Issue 105383002: Rename EME WD call parameters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nit Created 7 years 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/renderer/media/webcontentdecryptionmodule_impl.h
diff --git a/content/renderer/media/webcontentdecryptionmodule_impl.h b/content/renderer/media/webcontentdecryptionmodule_impl.h
index 27c79c0c600b7cdae5da847695a75983b67853db..ecd5198efda32c69c9fad9cc9ad1117707ceb0db 100644
--- a/content/renderer/media/webcontentdecryptionmodule_impl.h
+++ b/content/renderer/media/webcontentdecryptionmodule_impl.h
@@ -18,7 +18,7 @@ class MediaKeys;
namespace content {
class WebContentDecryptionModuleSessionImpl;
-class ReferenceIdAdapter;
+class SessionIdAdapter;
class WebContentDecryptionModuleImpl
: public blink::WebContentDecryptionModule {
@@ -35,13 +35,13 @@ class WebContentDecryptionModuleImpl
private:
// Takes ownership of |media_keys| and |adapter|.
WebContentDecryptionModuleImpl(scoped_ptr<media::MediaKeys> media_keys,
- scoped_ptr<ReferenceIdAdapter> adapter);
+ scoped_ptr<SessionIdAdapter> adapter);
// Called when a WebContentDecryptionModuleSessionImpl is closed.
- void OnSessionClosed(uint32 reference_id);
+ void OnSessionClosed(uint32 session_id);
scoped_ptr<media::MediaKeys> media_keys_;
- scoped_ptr<ReferenceIdAdapter> adapter_;
+ scoped_ptr<SessionIdAdapter> adapter_;
DISALLOW_COPY_AND_ASSIGN(WebContentDecryptionModuleImpl);
};
« no previous file with comments | « content/renderer/media/crypto/proxy_decryptor.cc ('k') | content/renderer/media/webcontentdecryptionmodule_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698