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

Unified Diff: third_party/WebKit/Source/core/events/EventDispatcher.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/core/events/EventDispatcher.h
diff --git a/third_party/WebKit/Source/core/events/EventDispatcher.h b/third_party/WebKit/Source/core/events/EventDispatcher.h
index 972fa2146008d01f36a73bbfa3e18c1045720502..5a543faa22572925a5249587556993b146ccb2bc 100644
--- a/third_party/WebKit/Source/core/events/EventDispatcher.h
+++ b/third_party/WebKit/Source/core/events/EventDispatcher.h
@@ -49,8 +49,8 @@ enum EventDispatchContinuation {
class EventDispatcher {
STACK_ALLOCATED();
public:
- static DispatchEventResult dispatchEvent(Node&, PassRefPtrWillBeRawPtr<EventDispatchMediator>);
- static void dispatchScopedEvent(Node&, PassRefPtrWillBeRawPtr<EventDispatchMediator>);
+ static DispatchEventResult dispatchEvent(Node&, RawPtr<EventDispatchMediator>);
+ static void dispatchScopedEvent(Node&, RawPtr<EventDispatchMediator>);
static void dispatchSimulatedClick(Node&, Event* underlyingEvent, SimulatedClickMouseEventOptions, SimulatedClickCreationScope);
@@ -59,7 +59,7 @@ public:
Event& event() const { return *m_event; }
private:
- EventDispatcher(Node&, PassRefPtrWillBeRawPtr<Event>);
+ EventDispatcher(Node&, RawPtr<Event>);
EventDispatchContinuation dispatchEventPreProcess(void*& preDispatchEventHandlerResult);
EventDispatchContinuation dispatchEventAtCapturing();
@@ -67,9 +67,9 @@ private:
void dispatchEventAtBubbling();
void dispatchEventPostProcess(void* preDispatchEventHandlerResult);
- RefPtrWillBeMember<Node> m_node;
- RefPtrWillBeMember<Event> m_event;
- RefPtrWillBeMember<FrameView> m_view;
+ Member<Node> m_node;
+ Member<Event> m_event;
+ Member<FrameView> m_view;
#if ENABLE(ASSERT)
bool m_eventDispatched;
#endif

Powered by Google App Engine
This is Rietveld 408576698