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

Side by Side Diff: third_party/WebKit/Source/modules/sensor/SensorReadingEvent.cpp

Issue 2051083002: WIP : Generic Sensor API implementation Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/modules/sensor/SensorReading.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "modules/sensor/SensorReadingEvent.h" 5 #include "modules/sensor/SensorReadingEvent.h"
6 6
7 namespace blink { 7 namespace blink {
8 8
9 SensorReadingEvent::~SensorReadingEvent() 9 SensorReadingEvent::~SensorReadingEvent()
10 { 10 {
11 } 11 }
12 12
13 SensorReadingEvent::SensorReadingEvent() 13 SensorReadingEvent::SensorReadingEvent()
14 { 14 {
15 } 15 }
16 16
17 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType) 17 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType)
18 : Event(eventType, true, false) // let default be bubbles but is not cancela ble. 18 : Event(eventType, false, false)
19 , m_reading(SensorReading::create()) 19 // , m_reading(SensorReading::create())
20 { 20 {
21 } 21 }
22 22
23 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType, SensorRead ing& reading) 23 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType, SensorRead ing& reading)
24 : Event(eventType, true, false) // let default be bubbles but is not cancela ble. 24 : Event(eventType, false, false)
25 , m_reading(reading) 25 , m_reading(reading)
26 { 26 {
27 } 27 }
28 28
29 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType, const Sens orReadingEventInit& initializer) 29 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType, const Sens orReadingEventInit& initializer)
30 : Event(eventType, initializer) 30 : Event(eventType, initializer)
31 , m_reading(SensorReading::create()) 31 // , m_reading(SensorReading::create())
32 { 32 {
33 setCanBubble(true);
34 } 33 }
35 34
36 const AtomicString& SensorReadingEvent::interfaceName() const 35 const AtomicString& SensorReadingEvent::interfaceName() const
37 { 36 {
38 return EventNames::SensorReadingEvent; 37 return EventNames::SensorReadingEvent;
39 } 38 }
40 39
41 DEFINE_TRACE(SensorReadingEvent) 40 DEFINE_TRACE(SensorReadingEvent)
42 { 41 {
43 Event::trace(visitor); 42 Event::trace(visitor);
44 visitor->trace(m_reading); 43 visitor->trace(m_reading);
45 } 44 }
46 45
47 } // namespace blink 46 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/sensor/SensorReading.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698