| Index: third_party/WebKit/Source/modules/presentation/NavigatorPresentation.h
|
| diff --git a/third_party/WebKit/Source/modules/presentation/NavigatorPresentation.h b/third_party/WebKit/Source/modules/presentation/NavigatorPresentation.h
|
| index f888fe5c3116d3c88c2518c27fc8aa57d043804c..56c46d0495b033b665f876801a3ba3b323dcfe08 100644
|
| --- a/third_party/WebKit/Source/modules/presentation/NavigatorPresentation.h
|
| +++ b/third_party/WebKit/Source/modules/presentation/NavigatorPresentation.h
|
| @@ -6,20 +6,23 @@
|
| #define NavigatorPresentation_h
|
|
|
| #include "core/frame/Navigator.h"
|
| +#include "modules/ModulesExport.h"
|
| #include "platform/Supplementable.h"
|
| #include "platform/heap/Handle.h"
|
|
|
| namespace blink {
|
|
|
| +class Document;
|
| class Navigator;
|
| class Presentation;
|
|
|
| -class NavigatorPresentation final
|
| +class MODULES_EXPORT NavigatorPresentation final
|
| : public GarbageCollected<NavigatorPresentation>,
|
| public Supplement<Navigator> {
|
| USING_GARBAGE_COLLECTED_MIXIN(NavigatorPresentation);
|
|
|
| public:
|
| + static NavigatorPresentation* from(Document&);
|
| static NavigatorPresentation& from(Navigator&);
|
| static Presentation* presentation(Navigator&);
|
|
|
|
|