Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/ActiveDOMObject.h" | 9 #include "core/dom/ActiveDOMObject.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 "modules/presentation/PresentationRequest.h" | |
| 13 #include "platform/weborigin/KURL.h" | 14 #include "platform/weborigin/KURL.h" |
| 14 #include "public/platform/WebURL.h" | 15 #include "public/platform/WebURL.h" |
| 15 #include "public/platform/modules/presentation/WebPresentationAvailabilityObserv er.h" | 16 #include "public/platform/modules/presentation/WebPresentationAvailabilityObserv er.h" |
| 16 | 17 |
| 17 namespace blink { | 18 namespace blink { |
| 18 | 19 |
| 19 class ExecutionContext; | 20 class ExecutionContext; |
| 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, |
| 29 public ActiveDOMObject, | 29 public ActiveDOMObject, |
| 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(PresentationAvailabilityProperty*, |
|
mlamouri (slow - plz ping)
2016/12/13 13:56:12
Can you forward declare one way or another?
zhaobin
2016/12/14 02:25:09
Cannot forward declare using. Create a seperate .h
mlamouri (slow - plz ping)
2016/12/14 12:25:06
An alternative would be to simply re-declare the t
zhaobin
2016/12/14 20:51:53
Yes, it works. It concerns me a little because we
| |
| 37 const KURL&, | 37 const KURL&, |
| 38 bool); | 38 bool); |
| 39 ~PresentationAvailability() override; | 39 ~PresentationAvailability() override; |
| 40 | 40 |
| 41 // EventTarget implementation. | 41 // EventTarget implementation. |
| 42 const AtomicString& interfaceName() const override; | 42 const AtomicString& interfaceName() const override; |
| 43 ExecutionContext* getExecutionContext() const override; | 43 ExecutionContext* getExecutionContext() const override; |
| 44 | 44 |
| 45 // WebPresentationAvailabilityObserver implementation. | 45 // WebPresentationAvailabilityObserver implementation. |
| 46 void availabilityChanged(bool) override; | 46 void availabilityChanged(bool) override; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 |
| OLD | NEW |