OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #include "config.h" | |
6 #include "modules/background_sync/SyncEvent.h" | 5 #include "modules/background_sync/SyncEvent.h" |
7 | 6 |
8 namespace blink { | 7 namespace blink { |
9 | 8 |
10 SyncEvent::SyncEvent() | 9 SyncEvent::SyncEvent() |
11 { | 10 { |
12 } | 11 } |
13 | 12 |
14 SyncEvent::SyncEvent(const AtomicString& type, const String& tag, bool lastChanc
e, WaitUntilObserver* observer) | 13 SyncEvent::SyncEvent(const AtomicString& type, const String& tag, bool lastChanc
e, WaitUntilObserver* observer) |
15 : ExtendableEvent(type, ExtendableEventInit(), observer) | 14 : ExtendableEvent(type, ExtendableEventInit(), observer) |
(...skipping 27 matching lines...) Expand all Loading... |
43 { | 42 { |
44 return m_lastChance; | 43 return m_lastChance; |
45 } | 44 } |
46 | 45 |
47 DEFINE_TRACE(SyncEvent) | 46 DEFINE_TRACE(SyncEvent) |
48 { | 47 { |
49 ExtendableEvent::trace(visitor); | 48 ExtendableEvent::trace(visitor); |
50 } | 49 } |
51 | 50 |
52 } // namespace blink | 51 } // namespace blink |
OLD | NEW |