| Index: public/platform/modules/presentation/WebPresentationController.h
|
| diff --git a/public/platform/modules/presentation/WebPresentationController.h b/public/platform/modules/presentation/WebPresentationController.h
|
| index 9ce4747794957b3ec0ffd743e138282fb5ee0083..8ed2da2f86fa5916a696978cba54dd8cd75a50ff 100644
|
| --- a/public/platform/modules/presentation/WebPresentationController.h
|
| +++ b/public/platform/modules/presentation/WebPresentationController.h
|
| @@ -7,6 +7,8 @@
|
|
|
| namespace blink {
|
|
|
| +class WebPresentationSessionClient;
|
| +
|
| // The delegate Blink provides to WebPresentationClient in order to get updates.
|
| class WebPresentationController {
|
| public:
|
| @@ -18,6 +20,10 @@ public:
|
|
|
| // Indicates if the frame has listeners to the |availablechange| event.
|
| virtual bool isAvailableChangeWatched() const = 0;
|
| +
|
| + // Called when the presentation session is started by the embedder using
|
| + // the default presentation URL and id.
|
| + virtual void didStartDefaultSession(WebPresentationSessionClient*) = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|