| Index: third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
|
| diff --git a/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h b/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
|
| index 0ad0419d1045870f8e17c005c110ba78fe82c0f9..c1f398c0a87c3ace4d6c29597868ae041f3908dc 100644
|
| --- a/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
|
| +++ b/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
|
| @@ -8,8 +8,12 @@
|
| #include "public/platform/WebString.h"
|
| #include "public/platform/WebURL.h"
|
|
|
| +#include <memory>
|
| +
|
| namespace blink {
|
|
|
| +class WebPresentationConnectionProxy;
|
| +
|
| enum class WebPresentationConnectionState {
|
| Connecting = 0,
|
| Connected,
|
| @@ -27,6 +31,7 @@ class WebPresentationConnectionClient {
|
|
|
| virtual WebString getId() = 0;
|
| virtual WebURL getUrl() = 0;
|
| + virtual std::unique_ptr<WebPresentationConnectionProxy> takeProxy() = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|