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

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

Issue 832263007: Added plumbing for the availablechange event from Blink to WebPresentationClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added isAvailableChangeWatched Created 5 years, 11 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: Source/modules/presentation/NavigatorPresentation.h
diff --git a/Source/modules/presentation/NavigatorPresentation.h b/Source/modules/presentation/NavigatorPresentation.h
index 52f820138b62cb42ff52e53d0b666257217e9cce..49fa40226b13f56e684bf99321e2ffccbc1b4d06 100644
--- a/Source/modules/presentation/NavigatorPresentation.h
+++ b/Source/modules/presentation/NavigatorPresentation.h
@@ -5,18 +5,17 @@
#ifndef NavigatorPresentation_h
#define NavigatorPresentation_h
-#include "core/frame/DOMWindowProperty.h"
#include "platform/Supplementable.h"
namespace blink {
+class LocalFrame;
class Navigator;
class Presentation;
class NavigatorPresentation final
: public NoBaseWillBeGarbageCollectedFinalized<NavigatorPresentation>
- , public WillBeHeapSupplement<Navigator>
- , public DOMWindowProperty {
+ , public WillBeHeapSupplement<Navigator> {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorPresentation);
public:
virtual ~NavigatorPresentation();
@@ -29,7 +28,7 @@ public:
private:
static const char* supplementName();
- explicit NavigatorPresentation(LocalFrame*);
+ NavigatorPresentation();
Presentation* presentation();

Powered by Google App Engine
This is Rietveld 408576698