Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: third_party/WebKit/Source/modules/presentation/NavigatorPresentation.h

Issue 2801823003: [Presentation API] Change connection to 'connected' if start a presentation with "https://www.googl… (Closed)
Patch Set: fix content_unittest and layout test failures Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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&);

Powered by Google App Engine
This is Rietveld 408576698