| Index: content/renderer/presentation/presentation_connection_client.h
|
| diff --git a/content/renderer/presentation/presentation_connection_client.h b/content/renderer/presentation/presentation_connection_client.h
|
| index f8e0bac00034b04684557338fcb418b5edb9c314..799ad62ec1a3533a49f434b22571a14bff0338d8 100644
|
| --- a/content/renderer/presentation/presentation_connection_client.h
|
| +++ b/content/renderer/presentation/presentation_connection_client.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "base/compiler_specific.h"
|
| #include "content/common/content_export.h"
|
| +#include "content/renderer/presentation/renderer_presentation_connection.h"
|
| #include "third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h"
|
| #include "third_party/WebKit/public/platform/modules/presentation/presentation.mojom.h"
|
| #include "url/gurl.h"
|
| @@ -22,15 +23,20 @@ class CONTENT_EXPORT PresentationConnectionClient
|
| blink::mojom::PresentationSessionInfoPtr session_info);
|
| explicit PresentationConnectionClient(const GURL& url,
|
| const mojo::String& id);
|
| + explicit PresentationConnectionClient(
|
| + blink::mojom::PresentationSessionInfoPtr session_info,
|
| + blink::WebPresentationConnectionProxy* proxy);
|
| ~PresentationConnectionClient() override;
|
|
|
| // WebPresentationConnectionClient implementation.
|
| blink::WebURL getUrl() override;
|
| blink::WebString getId() override;
|
| + blink::WebPresentationConnectionProxy* getOrCreateProxy() override;
|
|
|
| private:
|
| blink::WebURL url_;
|
| blink::WebString id_;
|
| + blink::WebPresentationConnectionProxy* proxy_;
|
| };
|
|
|
| } // namespace content
|
|
|