OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_RENDERER_PRESENTATION_RENDERER_PRESENTATION_CONNECTION_H_ |
| 6 #define CONTENT_RENDERER_PRESENTATION_RENDERER_PRESENTATION_CONNECTION_H_ |
| 7 |
| 8 #include "base/callback.h" |
| 9 #include "mojo/public/cpp/bindings/binding.h" |
| 10 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio
nConnection.h" |
| 11 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio
nConnectionProxy.h" |
| 12 #include "third_party/WebKit/public/platform/modules/presentation/presentation.m
ojom.h" |
| 13 |
| 14 namespace content { |
| 15 |
| 16 class RendererPresentationConnection |
| 17 : public blink::WebPresentationConnectionProxy, |
| 18 public NON_EXPORTED_BASE(blink::mojom::PresentationConnection) { |
| 19 public: |
| 20 RendererPresentationConnection(); |
| 21 ~RendererPresentationConnection() override; |
| 22 |
| 23 blink::mojom::PresentationConnectionPtr Bind(); |
| 24 |
| 25 // WebPresentationConnectionProxy Implementation |
| 26 void SetConnection(blink::WebPresentationConnection* connection) override; |
| 27 void SendString(const blink::WebString& message) override; |
| 28 void SendArrayBuffer(const uint8_t* data, size_t length) override; |
| 29 |
| 30 // blink::mojom::PresentationConnection implementation |
| 31 void SetTargetConnection( |
| 32 blink::mojom::PresentationConnectionPtr connection) override; |
| 33 void OnSessionMessageReceived( |
| 34 blink::mojom::SessionMessagePtr message) override; |
| 35 |
| 36 private: |
| 37 mojo::Binding<blink::mojom::PresentationConnection> binding_; |
| 38 blink::mojom::PresentationConnectionPtr target_connection_; |
| 39 blink::WebPresentationConnection* connection_; |
| 40 }; |
| 41 |
| 42 } // namespace content |
| 43 |
| 44 #endif // CONTENT_RENDERER_PRESENTATION_RENDERER_PRESENTATION_CONNECTION_H_ |
OLD | NEW |