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

Unified Diff: media/remoting/remoting_cdm_controller.cc

Issue 2457563002: Media Remoting: Add remoting control logic for encrypted contents. (Closed)
Patch Set: Addressed comments from PS#12. Fixed ASAN. Created 4 years, 1 month 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 | « media/remoting/remoting_cdm_controller.h ('k') | media/remoting/remoting_cdm_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/remoting/remoting_cdm_controller.cc
diff --git a/media/remoting/remoting_cdm_controller.cc b/media/remoting/remoting_cdm_controller.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4cce65095d2da9c629bbe2fcf340404cdfadf212
--- /dev/null
+++ b/media/remoting/remoting_cdm_controller.cc
@@ -0,0 +1,59 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/remoting/remoting_cdm_controller.h"
+
+#include "base/bind.h"
+#include "base/callback_helpers.h"
+#include "base/logging.h"
+#include "base/threading/thread_checker.h"
+
+namespace media {
+
+RemotingCdmController::RemotingCdmController(
+ scoped_refptr<RemotingSourceImpl> remoting_source)
+ : remoting_source_(std::move(remoting_source)) {
+ remoting_source_->AddClient(this);
+}
+
+RemotingCdmController::~RemotingCdmController() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+
+ remoting_source_->RemoveClient(this);
+}
+
+void RemotingCdmController::OnStarted(bool success) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+
+ DCHECK(!cdm_check_cb_.is_null());
+ is_remoting_ = success;
+ base::ResetAndReturn(&cdm_check_cb_).Run(success);
+}
+
+void RemotingCdmController::OnSessionStateChanged() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+
+ if (is_remoting_ &&
+ remoting_source_->state() == RemotingSessionState::SESSION_STOPPING) {
+ remoting_source_->Shutdown();
+ is_remoting_ = false;
+ }
+}
+
+void RemotingCdmController::ShouldCreateRemotingCdm(
+ const CdmCheckCallback& cb) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ DCHECK(!cb.is_null());
+
+ if (is_remoting_) {
+ cb.Run(true);
+ return;
+ }
+
+ DCHECK(cdm_check_cb_.is_null());
+ cdm_check_cb_ = cb;
+ remoting_source_->StartRemoting(this);
+}
+
+} // namespace media
« no previous file with comments | « media/remoting/remoting_cdm_controller.h ('k') | media/remoting/remoting_cdm_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698