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

Unified Diff: Source/modules/device_orientation/DeviceOrientationDispatcher.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/DeviceOrientationDispatcher.cpp
diff --git a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
index 9b24851d369621eb80763bedb61755bc1a58a621..07ddc56e075ee730358b9852ac1b0a95522c95da 100644
--- a/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
+++ b/Source/modules/device_orientation/DeviceOrientationDispatcher.cpp
@@ -39,8 +39,8 @@ namespace blink {
DeviceOrientationDispatcher& DeviceOrientationDispatcher::instance()
{
- DEFINE_STATIC_LOCAL(DeviceOrientationDispatcher, deviceOrientationDispatcher, ());
- return deviceOrientationDispatcher;
+ DEFINE_STATIC_LOCAL(Persistent<DeviceOrientationDispatcher>, deviceOrientationDispatcher, (new DeviceOrientationDispatcher()));
+ return *deviceOrientationDispatcher;
}
DeviceOrientationDispatcher::DeviceOrientationDispatcher()
@@ -51,6 +51,12 @@ DeviceOrientationDispatcher::~DeviceOrientationDispatcher()
{
}
+void DeviceOrientationDispatcher::trace(Visitor* visitor)
+{
+ visitor->trace(m_lastDeviceOrientationData);
+ PlatformEventDispatcher::trace(visitor);
+}
+
void DeviceOrientationDispatcher::startListening()
{
Platform::current()->startListening(WebPlatformEventDeviceOrientation, this);
« no previous file with comments | « Source/modules/device_orientation/DeviceOrientationDispatcher.h ('k') | Source/modules/gamepad/GamepadDispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698