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

Unified Diff: Source/modules/device_orientation/DeviceOrientationEvent.cpp

Issue 1186823014: [bindings] Eliminate custom bindings for DeviceOrientationEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Initialize the constructor to be null Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/device_orientation/DeviceOrientationEvent.cpp
diff --git a/Source/modules/device_orientation/DeviceOrientationEvent.cpp b/Source/modules/device_orientation/DeviceOrientationEvent.cpp
index 50edaf4eab1d42e190b5f817c485947d0d9d114e..d34d9ce2fd1f7818c6a739fb8ef03d3a817d0f10 100644
--- a/Source/modules/device_orientation/DeviceOrientationEvent.cpp
+++ b/Source/modules/device_orientation/DeviceOrientationEvent.cpp
@@ -45,13 +45,13 @@ DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, De
{
}
-void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation)
+void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, const Nullable<double>& alpha, const Nullable<double>& beta, const Nullable<double>& gamma, const Nullable<bool>& absolute)
{
if (dispatched())
return;
initEvent(type, bubbles, cancelable);
- m_orientation = orientation;
+ m_orientation = DeviceOrientationData::create(alpha, beta, gamma, absolute);
}
double DeviceOrientationEvent::alpha(bool& isNull) const

Powered by Google App Engine
This is Rietveld 408576698