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

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

Issue 2216593002: Drop document.createEvent support for things still behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@createEvent
Patch Set: fix LayoutTests Created 4 years, 4 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698