OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "modules/background_sync/PeriodicSyncEvent.h" |
| 7 |
| 8 #include "modules/background_sync/PeriodicSyncEventInit.h" |
| 9 #include "modules/background_sync/PeriodicSyncRegistration.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 PeriodicSyncEvent::PeriodicSyncEvent() |
| 14 { |
| 15 } |
| 16 |
| 17 PeriodicSyncEvent::PeriodicSyncEvent(const AtomicString& type, PeriodicSyncRegis
tration* periodicRegistration, WaitUntilObserver* observer) |
| 18 : ExtendableEvent(type, ExtendableEventInit(), observer) |
| 19 , m_periodicRegistration(periodicRegistration) |
| 20 { |
| 21 } |
| 22 |
| 23 PeriodicSyncEvent::PeriodicSyncEvent(const AtomicString& type, const PeriodicSyn
cEventInit& init) |
| 24 : ExtendableEvent(type, init) |
| 25 { |
| 26 m_periodicRegistration = init.registration(); |
| 27 } |
| 28 |
| 29 PeriodicSyncEvent::~PeriodicSyncEvent() |
| 30 { |
| 31 } |
| 32 |
| 33 const AtomicString& PeriodicSyncEvent::interfaceName() const |
| 34 { |
| 35 return EventNames::PeriodicSyncEvent; |
| 36 } |
| 37 |
| 38 PeriodicSyncRegistration* PeriodicSyncEvent::registration() |
| 39 { |
| 40 return m_periodicRegistration.get(); |
| 41 } |
| 42 |
| 43 DEFINE_TRACE(PeriodicSyncEvent) |
| 44 { |
| 45 visitor->trace(m_periodicRegistration); |
| 46 ExtendableEvent::trace(visitor); |
| 47 } |
| 48 |
| 49 } // namespace blink |
OLD | NEW |