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

Unified Diff: media/remoting/remoting_sink_observer.h

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_renderer_factory.cc ('k') | media/remoting/remoting_sink_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/remoting/remoting_sink_observer.h
diff --git a/media/remoting/remoting_sink_observer.h b/media/remoting/remoting_sink_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..9ee3861a45c5612f551f72b7b1e09e57dfad3210
--- /dev/null
+++ b/media/remoting/remoting_sink_observer.h
@@ -0,0 +1,41 @@
+// 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.
+
+#ifndef MEDIA_REMOTING_REMOTING_SINK_OBSERVER_H_
+#define MEDIA_REMOTING_REMOTING_SINK_OBSERVER_H_
+
+#include "media/mojo/interfaces/remoting.mojom.h"
+#include "mojo/public/cpp/bindings/binding.h"
+
+namespace media {
+
+// This calss is a pure observer of remoting sink availability to indicate
+// whether a remoting session can be started.
+class RemotingSinkObserver final : public mojom::RemotingSource {
+ public:
+ RemotingSinkObserver(mojom::RemotingSourceRequest source_request,
+ mojom::RemoterPtr remoter);
+ ~RemotingSinkObserver() override;
+
+ // RemotingSource implementations.
+ void OnSinkAvailable() override;
+ void OnSinkGone() override;
+ void OnStarted() override {}
+ void OnStartFailed(mojom::RemotingStartFailReason reason) override {}
+ void OnMessageFromSink(const std::vector<uint8_t>& message) override {}
+ void OnStopped(mojom::RemotingStopReason reason) override {}
+
+ bool is_sink_available() { return is_sink_available_; }
+
+ private:
+ const mojo::Binding<mojom::RemotingSource> binding_;
+ const mojom::RemoterPtr remoter_;
+ bool is_sink_available_ = false;
+
+ DISALLOW_COPY_AND_ASSIGN(RemotingSinkObserver);
+};
+
+} // namespace media
+
+#endif // MEDIA_REMOTING_REMOTING_SINK_OBSERVER_H_
« no previous file with comments | « media/remoting/remoting_renderer_factory.cc ('k') | media/remoting/remoting_sink_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698