| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 PushSubscriptionOptions_h | 5 #ifndef PushSubscriptionOptions_h |
| 6 #define PushSubscriptionOptions_h | 6 #define PushSubscriptionOptions_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | |
| 9 #include "modules/ModulesExport.h" | 8 #include "modules/ModulesExport.h" |
| 9 #include "platform/bindings/ScriptWrappable.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class DOMArrayBuffer; | 14 class DOMArrayBuffer; |
| 15 class ExceptionState; | 15 class ExceptionState; |
| 16 class PushSubscriptionOptionsInit; | 16 class PushSubscriptionOptionsInit; |
| 17 struct WebPushSubscriptionOptions; | 17 struct WebPushSubscriptionOptions; |
| 18 | 18 |
| 19 class PushSubscriptionOptions final | 19 class PushSubscriptionOptions final |
| (...skipping 25 matching lines...) Expand all Loading... |
| 45 private: | 45 private: |
| 46 explicit PushSubscriptionOptions(const WebPushSubscriptionOptions&); | 46 explicit PushSubscriptionOptions(const WebPushSubscriptionOptions&); |
| 47 | 47 |
| 48 bool user_visible_only_; | 48 bool user_visible_only_; |
| 49 Member<DOMArrayBuffer> application_server_key_; | 49 Member<DOMArrayBuffer> application_server_key_; |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 } // namespace blink | 52 } // namespace blink |
| 53 | 53 |
| 54 #endif // PushSubscriptionOptions_h | 54 #endif // PushSubscriptionOptions_h |
| OLD | NEW |