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

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

Issue 216523002: Oilpan: Replace most of RefPtrs for Event objects with oilpan's transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/core/frame/DeviceSensorEventController.h
diff --git a/Source/core/frame/DeviceSensorEventController.h b/Source/core/frame/DeviceSensorEventController.h
index 0b0950c32bb2f61af9bcdee5ec77cb82f23498e6..085f1e2a1c71b79e0d7aa6e248347f329eec47e9 100644
--- a/Source/core/frame/DeviceSensorEventController.h
+++ b/Source/core/frame/DeviceSensorEventController.h
@@ -44,10 +44,10 @@ protected:
explicit DeviceSensorEventController(Document&);
virtual ~DeviceSensorEventController();
- void dispatchDeviceEvent(const PassRefPtr<Event>);
+ void dispatchDeviceEvent(const PassRefPtrWillBeRawPtr<Event>);
virtual bool hasLastData() = 0;
- virtual PassRefPtr<Event> getLastEvent() = 0;
+ virtual PassRefPtrWillBeRawPtr<Event> getLastEvent() = 0;
virtual void registerWithDispatcher() = 0;
virtual void unregisterWithDispatcher() = 0;
virtual bool isNullEvent(Event*) = 0;

Powered by Google App Engine
This is Rietveld 408576698