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

Side by Side Diff: third_party/WebKit/Source/modules/presentation/PresentationAvailability.h

Issue 2577053002: ActiveScriptWrappable: GC wrappers in detached ExecutionContexts. (Closed)
Patch Set: component build fix(msvc) Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PresentationAvailability_h 5 #ifndef PresentationAvailability_h
6 #define PresentationAvailability_h 6 #define PresentationAvailability_h
7 7
8 #include "bindings/core/v8/ActiveScriptWrappable.h" 8 #include "bindings/core/v8/ActiveScriptWrappable.h"
9 #include "core/dom/SuspendableObject.h" 9 #include "core/dom/SuspendableObject.h"
10 #include "core/events/EventTarget.h" 10 #include "core/events/EventTarget.h"
11 #include "core/page/PageVisibilityObserver.h" 11 #include "core/page/PageVisibilityObserver.h"
12 #include "modules/ModulesExport.h" 12 #include "modules/ModulesExport.h"
13 #include "platform/weborigin/KURL.h" 13 #include "platform/weborigin/KURL.h"
14 #include "public/platform/WebURL.h" 14 #include "public/platform/WebURL.h"
15 #include "public/platform/modules/presentation/WebPresentationAvailabilityObserv er.h" 15 #include "public/platform/modules/presentation/WebPresentationAvailabilityObserv er.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class ExecutionContext; 19 class ExecutionContext;
20 class ScriptPromiseResolver; 20 class ScriptPromiseResolver;
21 21
22 // Expose whether there is a presentation display available for |url|. The 22 // Expose whether there is a presentation display available for |url|. The
23 // object will be initialized with a default value passed via ::take() and will 23 // object will be initialized with a default value passed via ::take() and will
24 // then subscribe to receive callbacks if the status for |url| were to 24 // then subscribe to receive callbacks if the status for |url| were to
25 // change. The object will only listen to changes when required. 25 // change. The object will only listen to changes when required.
26 class MODULES_EXPORT PresentationAvailability final 26 class MODULES_EXPORT PresentationAvailability final
27 : public EventTargetWithInlineData, 27 : public EventTargetWithInlineData,
28 public ActiveScriptWrappable, 28 public ActiveScriptWrappable<PresentationAvailability>,
29 public SuspendableObject, 29 public SuspendableObject,
30 public PageVisibilityObserver, 30 public PageVisibilityObserver,
31 public WebPresentationAvailabilityObserver { 31 public WebPresentationAvailabilityObserver {
32 USING_GARBAGE_COLLECTED_MIXIN(PresentationAvailability); 32 USING_GARBAGE_COLLECTED_MIXIN(PresentationAvailability);
33 DEFINE_WRAPPERTYPEINFO(); 33 DEFINE_WRAPPERTYPEINFO();
34 34
35 public: 35 public:
36 static PresentationAvailability* take(ScriptPromiseResolver*, 36 static PresentationAvailability* take(ScriptPromiseResolver*,
37 const KURL&, 37 const KURL&,
38 bool); 38 bool);
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 void updateListening(); 85 void updateListening();
86 86
87 const KURL m_url; 87 const KURL m_url;
88 bool m_value; 88 bool m_value;
89 State m_state; 89 State m_state;
90 }; 90 };
91 91
92 } // namespace blink 92 } // namespace blink
93 93
94 #endif // PresentationAvailability_h 94 #endif // PresentationAvailability_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698