Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 PushManager_h | 5 #ifndef PushManager_h |
| 6 #define PushManager_h | 6 #define PushManager_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "wtf/PassRefPtr.h" | |
| 11 | 10 |
| 12 namespace blink { | 11 namespace blink { |
| 13 | 12 |
| 14 class ScriptPromise; | 13 class ScriptPromise; |
| 15 class ScriptState; | 14 class ScriptState; |
| 16 class ScriptPromiseResolver; | |
| 17 class WebPushClient; | |
| 18 class WebServiceWorkerProvider; | |
| 19 | 15 |
| 20 class PushManager final : public GarbageCollected<PushManager>, public ScriptWra ppable { | 16 class PushManager final : public GarbageCollected<PushManager>, public ScriptWra ppable { |
| 21 DEFINE_WRAPPERTYPEINFO(); | 17 DEFINE_WRAPPERTYPEINFO(); |
| 22 public: | 18 public: |
| 23 static PushManager* create() | 19 static PushManager* create() |
| 24 { | 20 { |
| 25 return new PushManager(); | 21 return new PushManager(); |
| 26 } | 22 } |
| 27 | 23 |
| 28 ScriptPromise registerPushMessaging(ScriptState*); | 24 ScriptPromise registerPushMessaging(ScriptState*); |
| 29 ScriptPromise hasPermission(ScriptState*); | 25 ScriptPromise hasPermission(ScriptState*); |
| 30 | 26 |
| 31 void doRegister(WebPushClient*, PassRefPtr<ScriptPromiseResolver>, WebServic eWorkerProvider*); | |
| 32 | |
| 33 void trace(Visitor*) { } | 27 void trace(Visitor*) { } |
|
Peter Beverloo
2014/11/13 11:45:17
nit: This needs to be marked as override.
Michael van Ouwerkerk
2014/11/13 12:49:43
Done.
Michael van Ouwerkerk
2014/11/13 14:22:01
Actually, that does not compile :-( So no.
| |
| 34 | 28 |
| 35 private: | 29 private: |
| 36 PushManager(); | 30 PushManager(); |
| 37 }; | 31 }; |
| 38 | 32 |
| 39 } // namespace blink | 33 } // namespace blink |
| 40 | 34 |
| 41 #endif // PushManager_h | 35 #endif // PushManager_h |
| OLD | NEW |