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

Unified Diff: content/renderer/media/crypto/encrypted_media_player_support_impl.cc

Issue 650853003: Buildfix for no-args cases to RenderCdmFactory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/crypto/encrypted_media_player_support_impl.cc
diff --git a/content/renderer/media/crypto/encrypted_media_player_support_impl.cc b/content/renderer/media/crypto/encrypted_media_player_support_impl.cc
index aaa99c8ff418baa85187675cc8925dd574743235..6f92ad138467ee30175d611a6c84440408e6c623 100644
--- a/content/renderer/media/crypto/encrypted_media_player_support_impl.cc
+++ b/content/renderer/media/crypto/encrypted_media_player_support_impl.cc
@@ -180,11 +180,11 @@ EncryptedMediaPlayerSupportImpl::GenerateKeyRequestInternal(
GURL security_origin(frame->document().securityOrigin().toString());
- RenderCdmFactory cdm_factory(
+ RenderCdmFactory cdm_factory
#if defined(ENABLE_PEPPER_CDMS)
- base::Bind(&PepperCdmWrapperImpl::Create, frame)
+ (base::Bind(&PepperCdmWrapperImpl::Create, frame))
jamesr 2014/10/21 00:43:38 at this point sharing the variable declaration isn
gunsch 2014/10/21 00:50:28 Done.
#endif
- );
+ ;
if (!proxy_decryptor_->InitializeCDM(&cdm_factory, key_system,
security_origin)) {
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698