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

Unified Diff: Source/core/frame/DeviceSensorEventController.h

Issue 256593010: Gracefully support Navigator Gamepad methods in a detached state. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/core/frame/DeviceSensorEventController.h
diff --git a/Source/core/frame/DeviceSensorEventController.h b/Source/core/frame/DeviceSensorEventController.h
index 085f1e2a1c71b79e0d7aa6e248347f329eec47e9..dc4ac0bcfa63635e31b8f75122b6737bdb4aad8d 100644
--- a/Source/core/frame/DeviceSensorEventController.h
+++ b/Source/core/frame/DeviceSensorEventController.h
@@ -41,7 +41,7 @@ public:
void stopUpdating();
protected:
- explicit DeviceSensorEventController(Document&);
+ explicit DeviceSensorEventController(Document*);
virtual ~DeviceSensorEventController();
void dispatchDeviceEvent(const PassRefPtrWillBeRawPtr<Event>);
@@ -60,7 +60,9 @@ private:
void fireDeviceEvent(Timer<DeviceSensorEventController>*);
- Document& m_document;
+ // Will be null if created in a detached state, without
+ // a frame (and its document.)
+ Document* m_document;
abarth-chromium 2014/04/28 17:58:14 Maybe rather than storing this pointer, this class
sof 2014/04/28 18:58:42 Thanks, I like that suggestion, will try to make i
bool m_isActive;
bool m_needsCheckingNullEvents;
Timer<DeviceSensorEventController> m_timer;

Powered by Google App Engine
This is Rietveld 408576698