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); |
}; |