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

Side by Side Diff: third_party/WebKit/Source/modules/sensor/SensorErrorEvent.h

Issue 1892083002: Generic Sensor API : Ambient Light Sensor API. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: re entrancy fix 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef SensorErrorEvent_h
6 #define SensorErrorEvent_h
7
8 #include "core/events/ErrorEvent.h"
9 #include "modules/EventModules.h"
10 #include "modules/sensor/SensorErrorEventInit.h"
11 #include "platform/heap/Handle.h"
12
13 namespace blink {
14
15 class SensorErrorEvent : public Event {
16 DEFINE_WRAPPERTYPEINFO();
17
18 public:
19 static SensorErrorEvent* create()
20 {
21 return new SensorErrorEvent;
22 }
23
24 static SensorErrorEvent* create(const AtomicString& eventType)
25 {
26 return new SensorErrorEvent(eventType);
27 }
28
29 static SensorErrorEvent* create(const AtomicString& eventType, const SensorE rrorEventInit& initializer)
30 {
31 return new SensorErrorEvent(eventType, initializer);
32 }
33
34 ~SensorErrorEvent() override;
35
36 DECLARE_VIRTUAL_TRACE();
37
38 const AtomicString& interfaceName() const override;
39
40 SensorErrorEvent();
41 SensorErrorEvent(const AtomicString& eventType);
42 SensorErrorEvent(const AtomicString& eventType, const SensorErrorEventInit& initializer);
43
44 };
45
46 DEFINE_TYPE_CASTS(SensorErrorEvent, Event, event, event->interfaceName() == Even tNames::SensorErrorEvent, event.interfaceName() == EventNames::SensorErrorEvent) ;
47
48 } // namepsace blink
49
50 #endif // SensorErrorEvent_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/sensor/Sensor.idl ('k') | third_party/WebKit/Source/modules/sensor/SensorErrorEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698