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

Unified Diff: chrome/browser/media/router/browser_presentation_connection_proxy.h

Issue 2471573005: [Presentation API] (5th) (1-UA) integrate controller and receiver side for 1-UA messaging (Closed)
Patch Set: merge with issue 2471263003 Created 3 years, 11 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
Index: chrome/browser/media/router/browser_presentation_connection_proxy.h
diff --git a/chrome/browser/media/router/browser_presentation_connection_proxy.h b/chrome/browser/media/router/browser_presentation_connection_proxy.h
new file mode 100644
index 0000000000000000000000000000000000000000..e4a55637e5382cc603c8ca4f971556b909e04b39
--- /dev/null
+++ b/chrome/browser/media/router/browser_presentation_connection_proxy.h
@@ -0,0 +1,71 @@
+// Copyright 2017 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 CHROME_BROWSER_MEDIA_ROUTER_BROWSER_PRESENTATION_CONNECTION_PROXY_H_
+#define CHROME_BROWSER_MEDIA_ROUTER_BROWSER_PRESENTATION_CONNECTION_PROXY_H_
+
+#include "content/public/browser/presentation_service_delegate.h"
+#include "content/public/common/presentation_session.h"
+#include "mojo/public/cpp/bindings/binding.h"
+
+namespace media_router {
+
+class MediaRouter;
+class MediaRoute;
+
+using OnMessageCallback = base::Callback<void(bool)>;
+
+// This class represents a browser side PresentationConnection. It connects with
+// PresentationConnection owned by a render frame to enable message exchange.
+// Message received on this class is further routed to media router. State of
mark a. foltz 2017/01/27 00:44:21 nit: Media Router
zhaobin 2017/01/27 05:05:46 Done.
+// browser side PresentationConnection is always 'connected'.
+//
+// |SetTargetConnection| sets |target_connection_| to mojo handle of
+// PresentationConnection object owned a render frame, and transits state of
+// |target_connection_| to 'connected'.
+//
+// Send message from page to media router:
mark a. foltz 2017/01/27 00:44:21 s/page/render frame/
zhaobin 2017/01/27 05:05:46 Done.
+// PresentationConnection::sendString();
+// -> PresentationDispatcher::DoSendMessage();
+// -> PresentationConnectionProxy::SendSessionMessage();
+// --> (mojo call to browser side PresentationConnection)
+// -> BrowserPresentationConnectionProxy::OnMessage();
+// -> MediaRouter::SendRouteMessage();
+//
+// Instance of this class is only created for remotely rendered presentations.
+// It is owned by PresentationFrame. When PresentationFrame gets destroyed or
+// |route_| is closed or terminated, instance of this class will be destroyed.
mark a. foltz 2017/01/27 00:44:21 What if the PresentationConnection is closed?
zhaobin 2017/01/27 05:05:46 If controller connection.close(), PSDImpl will det
+
+class BrowserPresentationConnectionProxy
+ : public NON_EXPORTED_BASE(blink::mojom::PresentationConnection) {
+ public:
+ BrowserPresentationConnectionProxy(const content::PresentationSessionInfo&,
+ MediaRouter* router,
+ MediaRoute* route);
+ ~BrowserPresentationConnectionProxy() override;
+
+ void Bind(blink::mojom::PresentationConnectionRequest);
+ void SetTargetConnection(blink::mojom::PresentationConnectionPtr connection);
+
+ // blink::mojom::PresentationConnection implementation
+ void OnMessage(blink::mojom::ConnectionMessagePtr message,
+ const OnMessageCallback& callback) override;
+ void DidChangeState(
+ blink::mojom::PresentationConnectionState state) override {}
+
+ private:
+ content::PresentationSessionInfo session_info_;
+
+ // |router_| not owned by this class.
+ MediaRouter* router_;
+ // |route_| not owned by this class.
+ MediaRoute* route_;
mark a. foltz 2017/01/27 00:44:21 Can this be const?
zhaobin 2017/01/27 05:05:46 Done.
+
+ mojo::Binding<blink::mojom::PresentationConnection> binding_;
+ blink::mojom::PresentationConnectionPtr target_connection_;
+};
+
+} // namespace media_router
+
+#endif // CHROME_BROWSER_MEDIA_ROUTER_BROWSER_PRESENTATION_CONNECTION_PROXY_H_

Powered by Google App Engine
This is Rietveld 408576698