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

Unified Diff: third_party/WebKit/Source/modules/device_orientation/DeviceOrientationEvent.h

Issue 2728963004: Remove non-standard DeviceOrientation Event initializers. (Closed)
Patch Set: Rebased. Created 3 years, 9 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: third_party/WebKit/Source/modules/device_orientation/DeviceOrientationEvent.h
diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationEvent.h b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationEvent.h
index 14493aff601ab3f723b907af7a7af3b01cc5e4b9..432ef0265b1ffdfe6cce17cc92fe4af9d40fba15 100644
--- a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationEvent.h
+++ b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationEvent.h
@@ -51,14 +51,6 @@ class DeviceOrientationEvent final : public Event {
return new DeviceOrientationEvent(eventType, orientation);
}
- void initDeviceOrientationEvent(const AtomicString& type,
- bool bubbles,
- bool cancelable,
- const Nullable<double>& alpha,
- const Nullable<double>& beta,
- const Nullable<double>& gamma,
- bool absolute);
-
DeviceOrientationData* orientation() const { return m_orientation.get(); }
double alpha(bool& isNull) const;

Powered by Google App Engine
This is Rietveld 408576698