OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 HeapVector<NotificationAction> actions() const; | 100 HeapVector<NotificationAction> actions() const; |
101 | 101 |
102 static String permissionString(WebNotificationPermission); | 102 static String permissionString(WebNotificationPermission); |
103 static String permission(ExecutionContext*); | 103 static String permission(ExecutionContext*); |
104 static WebNotificationPermission checkPermission(ExecutionContext*); | 104 static WebNotificationPermission checkPermission(ExecutionContext*); |
105 static ScriptPromise requestPermission(ScriptState*, NotificationPermissionC
allback*); | 105 static ScriptPromise requestPermission(ScriptState*, NotificationPermissionC
allback*); |
106 | 106 |
107 static size_t maxActions(); | 107 static size_t maxActions(); |
108 | 108 |
109 // EventTarget interface. | 109 // EventTarget interface. |
110 ExecutionContext* executionContext() const final { return ActiveDOMObject::e
xecutionContext(); } | 110 ExecutionContext* getExecutionContext() const final { return ActiveDOMObject
::getExecutionContext(); } |
111 const AtomicString& interfaceName() const override; | 111 const AtomicString& interfaceName() const override; |
112 | 112 |
113 // ActiveDOMObject interface. | 113 // ActiveDOMObject interface. |
114 void stop() override; | 114 void stop() override; |
115 bool hasPendingActivity() const override; | 115 bool hasPendingActivity() const override; |
116 | 116 |
117 DECLARE_VIRTUAL_TRACE(); | 117 DECLARE_VIRTUAL_TRACE(); |
118 | 118 |
119 protected: | 119 protected: |
120 // EventTarget interface. | 120 // EventTarget interface. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 void setState(NotificationState state) { m_state = state; } | 156 void setState(NotificationState state) { m_state = state; } |
157 | 157 |
158 NotificationState m_state; | 158 NotificationState m_state; |
159 | 159 |
160 Member<AsyncMethodRunner<Notification>> m_asyncRunner; | 160 Member<AsyncMethodRunner<Notification>> m_asyncRunner; |
161 }; | 161 }; |
162 | 162 |
163 } // namespace blink | 163 } // namespace blink |
164 | 164 |
165 #endif // Notification_h | 165 #endif // Notification_h |
OLD | NEW |