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

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

Issue 619383002: Move PlatformEventDispatcher implementations to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix non-Oilpan allocation of DeviceLightDispatcher singleton Created 6 years, 2 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/DeviceOrientationController.cpp
diff --git a/Source/modules/device_orientation/DeviceOrientationController.cpp b/Source/modules/device_orientation/DeviceOrientationController.cpp
index aad5490551ae2ea352eb81f3ef167bc2baed1ddf..405d5ec174a871c2010d844225485bac577144d0 100644
--- a/Source/modules/device_orientation/DeviceOrientationController.cpp
+++ b/Source/modules/device_orientation/DeviceOrientationController.cpp
@@ -20,7 +20,9 @@ DeviceOrientationController::DeviceOrientationController(Document& document)
DeviceOrientationController::~DeviceOrientationController()
{
+#if !ENABLE(OILPAN)
stopUpdating();
+#endif
}
void DeviceOrientationController::didUpdateData()

Powered by Google App Engine
This is Rietveld 408576698