| Index: content/renderer/presentation/presentation_dispatcher.h
|
| diff --git a/content/renderer/presentation/presentation_dispatcher.h b/content/renderer/presentation/presentation_dispatcher.h
|
| index e5fb81427c1bf7640cc4b2ee17927eaccd5a7c6b..135579417f097228d760be57693493504f393b3a 100644
|
| --- a/content/renderer/presentation/presentation_dispatcher.h
|
| +++ b/content/renderer/presentation/presentation_dispatcher.h
|
| @@ -24,6 +24,8 @@
|
| namespace blink {
|
| class WebPresentationAvailabilityObserver;
|
| class WebString;
|
| +template <typename T>
|
| +class WebVector;
|
| } // namespace blink
|
|
|
| namespace content {
|
| @@ -62,10 +64,10 @@ class CONTENT_EXPORT PresentationDispatcher
|
| // WebPresentationClient implementation.
|
| void setController(blink::WebPresentationController* controller) override;
|
| void startSession(
|
| - const blink::WebString& presentationUrl,
|
| + const blink::WebVector<blink::WebString>& presentationUrls,
|
| blink::WebPresentationConnectionClientCallbacks* callback) override;
|
| void joinSession(
|
| - const blink::WebString& presentationUrl,
|
| + const blink::WebVector<blink::WebString>& presentationUrls,
|
| const blink::WebString& presentationId,
|
| blink::WebPresentationConnectionClientCallbacks* callback) override;
|
| void sendString(const blink::WebString& presentationUrl,
|
| @@ -88,7 +90,8 @@ class CONTENT_EXPORT PresentationDispatcher
|
| blink::WebPresentationAvailabilityCallbacks* callbacks) override;
|
| void startListening(blink::WebPresentationAvailabilityObserver*) override;
|
| void stopListening(blink::WebPresentationAvailabilityObserver*) override;
|
| - void setDefaultPresentationUrl(const blink::WebString& url) override;
|
| + void setDefaultPresentationUrls(
|
| + const blink::WebVector<blink::WebString>& presentationUrls) override;
|
|
|
| // RenderFrameObserver implementation.
|
| void DidCommitProvisionalLoad(
|
|
|