summaryrefslogtreecommitdiff
path: root/chromium/media/cdm/cdm_context_ref_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/cdm/cdm_context_ref_impl.h')
-rw-r--r--chromium/media/cdm/cdm_context_ref_impl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/chromium/media/cdm/cdm_context_ref_impl.h b/chromium/media/cdm/cdm_context_ref_impl.h
index 7ea73f99eb9..6b827f1afef 100644
--- a/chromium/media/cdm/cdm_context_ref_impl.h
+++ b/chromium/media/cdm/cdm_context_ref_impl.h
@@ -18,6 +18,10 @@ class ContentDecryptionModule;
class MEDIA_EXPORT CdmContextRefImpl final : public CdmContextRef {
public:
explicit CdmContextRefImpl(scoped_refptr<ContentDecryptionModule> cdm);
+
+ CdmContextRefImpl(const CdmContextRefImpl&) = delete;
+ CdmContextRefImpl& operator=(const CdmContextRefImpl&) = delete;
+
~CdmContextRefImpl() final;
// CdmContextRef implementation.
@@ -26,8 +30,6 @@ class MEDIA_EXPORT CdmContextRefImpl final : public CdmContextRef {
private:
scoped_refptr<ContentDecryptionModule> cdm_;
THREAD_CHECKER(thread_checker_);
-
- DISALLOW_COPY_AND_ASSIGN(CdmContextRefImpl);
};
} // namespace media