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

Unified Diff: Source/modules/device_light/DeviceLightEvent.cpp

Issue 143823004: Implement DeviceLight (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase after r172146 Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
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"
+
+#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)
+ : Event(eventType, true, false) // Default event is bubbles, not cancellable.
+ , 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
+
+
+
+

Powered by Google App Engine
This is Rietveld 408576698