Chromium Code Reviews| 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/SyncEvent.h" | |
| 7 | |
| 8 namespace blink { | |
| 9 | |
| 10 SyncEvent::SyncEvent() | |
| 11 { | |
| 12 } | |
| 13 | |
| 14 SyncEvent::SyncEvent(const AtomicString& type, SyncRegistration* registration, W aitUntilObserver* observer) | |
| 15 : ExtendableEvent(type, ExtendableEventInit(), observer) | |
| 16 , m_registration(registration) | |
| 17 { | |
| 18 } | |
| 19 | |
| 20 SyncEvent::SyncEvent(const AtomicString& type, const SyncEventInit& init) | |
| 21 : ExtendableEvent(type, init) | |
| 22 { | |
| 23 m_registration = init.registration(); | |
| 24 } | |
| 25 | |
| 26 SyncEvent::~SyncEvent() | |
| 27 { | |
| 28 } | |
| 29 | |
| 30 const AtomicString& SyncEvent::interfaceName() const | |
| 31 { | |
| 32 return EventNames::SyncEvent; | |
| 33 } | |
| 34 | |
| 35 SyncRegistration* SyncEvent::registration() | |
| 36 { | |
| 37 return m_registration.get(); | |
| 38 } | |
| 39 | |
| 40 void SyncEvent::trace(Visitor* visitor) | |
|
jkarlin
2015/02/27 20:08:12
DEFINE_TRACE(PushEvent)
iclelland
2015/03/02 03:51:11
Done. (As SyncEvent ;) )
| |
| 41 { | |
| 42 visitor->trace(m_registration); | |
| 43 ExtendableEvent::trace(visitor); | |
| 44 } | |
| 45 | |
| 46 } // namespace blink | |
| OLD | NEW |