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 PushSubscription_h | 5 #ifndef PushSubscription_h |
| 6 #define PushSubscription_h | 6 #define PushSubscription_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
| 9 #include "bindings/core/v8/ScriptValue.h" | 9 #include "bindings/core/v8/ScriptValue.h" |
| 10 #include "bindings/core/v8/ScriptWrappable.h" | 10 #include "bindings/core/v8/ScriptWrappable.h" |
| 11 #include "core/dom/DOMException.h" | |
|
tasak
2015/04/30 07:02:55
modules.PushSubscription.obj : error LNK2001: unre
| |
| 11 #include "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
| 12 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
| 13 | 14 |
| 14 namespace blink { | 15 namespace blink { |
| 15 | 16 |
| 16 class ServiceWorkerRegistration; | 17 class ServiceWorkerRegistration; |
| 17 class ScriptPromiseResolver; | 18 class ScriptPromiseResolver; |
| 18 class ScriptState; | 19 class ScriptState; |
| 19 struct WebPushSubscription; | 20 struct WebPushSubscription; |
| 20 | 21 |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 38 PushSubscription(const String& endpoint, const String& subscriptionId, Servi ceWorkerRegistration*); | 39 PushSubscription(const String& endpoint, const String& subscriptionId, Servi ceWorkerRegistration*); |
| 39 | 40 |
| 40 String m_endpoint; | 41 String m_endpoint; |
| 41 String m_subscriptionId; | 42 String m_subscriptionId; |
| 42 Member<ServiceWorkerRegistration> m_serviceWorkerRegistration; | 43 Member<ServiceWorkerRegistration> m_serviceWorkerRegistration; |
| 43 }; | 44 }; |
| 44 | 45 |
| 45 } // namespace blink | 46 } // namespace blink |
| 46 | 47 |
| 47 #endif // PushSubscription_h | 48 #endif // PushSubscription_h |
| OLD | NEW |