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

Unified Diff: Source/core/events/EventQueue.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/events/EventQueue.h
diff --git a/Source/core/events/EventQueue.h b/Source/core/events/EventQueue.h
index 770ae797d21e88344dd4e60cece33f9aba161d42..47175c9dad8d5fda87f8710b1a39d32580de76c3 100644
--- a/Source/core/events/EventQueue.h
+++ b/Source/core/events/EventQueue.h
@@ -27,6 +27,7 @@
#ifndef EventQueue_h
#define EventQueue_h
+#include "heap/Handle.h"
#include "wtf/HashMap.h"
#include "wtf/HashSet.h"
#include "wtf/PassOwnPtr.h"
@@ -38,7 +39,7 @@ class Event;
class EventQueue {
public:
virtual ~EventQueue() { }
- virtual bool enqueueEvent(PassRefPtr<Event>) = 0;
+ virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) = 0;
virtual bool cancelEvent(Event*) = 0;
// The accumulated and all the future events will be discarded, no events will be dispatched anymore.
virtual void close() = 0;

Powered by Google App Engine
This is Rietveld 408576698