Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: Source/modules/background_sync/PeriodicSyncEvent.cpp

Issue 1096503002: [Background Sync] Converting Blink code to the MVP API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make sure ids are 64 bit; fix formatting anomaly Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 namespace blink {
9
10 PeriodicSyncEvent::PeriodicSyncEvent()
11 {
12 }
13
14 PeriodicSyncEvent::PeriodicSyncEvent(const AtomicString& type, PeriodicSyncRegis tration* syncRegistration, WaitUntilObserver* observer)
15 : ExtendableEvent(type, ExtendableEventInit(), observer)
16 , m_syncRegistration(syncRegistration)
17 {
18 }
19
20 PeriodicSyncEvent::PeriodicSyncEvent(const AtomicString& type, const PeriodicSyn cEventInit& init)
21 : ExtendableEvent(type, init)
22 {
23 m_syncRegistration = init.registration();
24 }
25
26 PeriodicSyncEvent::~PeriodicSyncEvent()
27 {
28 }
29
30 const AtomicString& PeriodicSyncEvent::interfaceName() const
31 {
32 return EventNames::PeriodicSyncEvent;
33 }
34
35 PeriodicSyncRegistration* PeriodicSyncEvent::registration()
36 {
37 return m_syncRegistration.get();
38 }
39
40 DEFINE_TRACE(PeriodicSyncEvent)
41 {
42 visitor->trace(m_syncRegistration);
43 ExtendableEvent::trace(visitor);
44 }
45
46 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698