Chromium Code Reviews| Index: Source/modules/device_light/DeviceLightEvent.cpp |
| diff --git a/Source/modules/device_light/DeviceLightEvent.cpp b/Source/modules/device_light/DeviceLightEvent.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1c42a3ce6c33b07212020775d67589c57d34ade4 |
| --- /dev/null |
| +++ b/Source/modules/device_light/DeviceLightEvent.cpp |
| @@ -0,0 +1,44 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "config.h" |
| + |
|
Inactive
2014/05/06 12:58:08
No need for this blank line.
riju_
2014/05/09 12:00:21
Done.
|
| +#include "modules/device_light/DeviceLightEvent.h" |
| + |
| +namespace WebCore { |
| + |
| +DeviceLightEvent::~DeviceLightEvent() |
| +{ |
| +} |
| + |
| +DeviceLightEvent::DeviceLightEvent() |
| + : m_value(std::numeric_limits<double>::infinity()) |
| +{ |
| + ScriptWrappable::init(this); |
| +} |
| + |
| +DeviceLightEvent::DeviceLightEvent(const AtomicString& eventType, const double value) |
|
Inactive
2014/05/06 12:58:08
nit: Why the const argument?
riju_
2014/05/09 12:00:21
Done.
|
| + : Event(eventType, true, false) // Default event is bubbles, not cancellable. |
|
Inactive
2014/05/06 12:58:08
// The DeviceLightEvent bubbles but is not cancela
riju_
2014/05/09 12:00:21
Done.
|
| + , m_value(value) |
| +{ |
| + ScriptWrappable::init(this); |
| +} |
| + |
| +DeviceLightEvent::DeviceLightEvent(const AtomicString& eventType, const DeviceLightEventInit& initializer) |
| + : Event(eventType, initializer) |
| + , m_value(initializer.value) |
| +{ |
| + ScriptWrappable::init(this); |
| +} |
| + |
| +const AtomicString& DeviceLightEvent::interfaceName() const |
| +{ |
| + return EventNames::DeviceLightEvent; |
| +} |
| + |
| +} // namespace WebCore |
| + |
| + |
| + |
| + |