| OLD | NEW |
| 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() | |
| 14 { | |
| 15 } | |
| 16 | |
| 17 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType) | 13 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType) |
| 18 : Event(eventType, true, false) // let default be bubbles but is not cancela
ble. | 14 : Event(eventType, true, false) // let default be bubbles but is not cancela
ble. |
| 19 , m_reading(SensorReading::create()) | 15 , m_reading(SensorReading::create()) |
| 20 { | 16 { |
| 21 } | 17 } |
| 22 | 18 |
| 23 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType, SensorRead
ing& reading) | 19 SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType, SensorRead
ing& reading) |
| 24 : Event(eventType, true, false) // let default be bubbles but is not cancela
ble. | 20 : Event(eventType, true, false) // let default be bubbles but is not cancela
ble. |
| 25 , m_reading(reading) | 21 , m_reading(reading) |
| 26 { | 22 { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 38 return EventNames::SensorReadingEvent; | 34 return EventNames::SensorReadingEvent; |
| 39 } | 35 } |
| 40 | 36 |
| 41 DEFINE_TRACE(SensorReadingEvent) | 37 DEFINE_TRACE(SensorReadingEvent) |
| 42 { | 38 { |
| 43 Event::trace(visitor); | 39 Event::trace(visitor); |
| 44 visitor->trace(m_reading); | 40 visitor->trace(m_reading); |
| 45 } | 41 } |
| 46 | 42 |
| 47 } // namespace blink | 43 } // namespace blink |
| OLD | NEW |