| Index: Source/core/frame/DOMWindow.h
|
| diff --git a/Source/core/frame/DOMWindow.h b/Source/core/frame/DOMWindow.h
|
| index db4865a5fc770c5c93a1f4ac46331895f4a8956e..8711de6b8cb297048e3001933b739f7be4b1089a 100644
|
| --- a/Source/core/frame/DOMWindow.h
|
| +++ b/Source/core/frame/DOMWindow.h
|
| @@ -231,7 +231,7 @@ enum PageshowEventPersistence {
|
|
|
| void postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray*, const String& targetOrigin, DOMWindow* source, ExceptionState&);
|
| void postMessageTimerFired(PassOwnPtr<PostMessageTimer>);
|
| - void dispatchMessageEventWithOriginCheck(SecurityOrigin* intendedTargetOrigin, PassRefPtr<Event>, PassRefPtr<ScriptCallStack>);
|
| + void dispatchMessageEventWithOriginCheck(SecurityOrigin* intendedTargetOrigin, PassRefPtrWillBeRawPtr<Event>, PassRefPtr<ScriptCallStack>);
|
|
|
| void scrollBy(int x, int y, const Dictionary& scrollOptions, ExceptionState&) const;
|
| void scrollTo(int x, int y, const Dictionary& scrollOptions, ExceptionState&) const;
|
| @@ -257,7 +257,7 @@ enum PageshowEventPersistence {
|
| virtual void removeAllEventListeners() OVERRIDE;
|
|
|
| using EventTarget::dispatchEvent;
|
| - bool dispatchEvent(PassRefPtr<Event> prpEvent, PassRefPtr<EventTarget> prpTarget);
|
| + bool dispatchEvent(PassRefPtrWillBeRawPtr<Event> prpEvent, PassRefPtr<EventTarget> prpTarget);
|
|
|
| void dispatchLoadEvent();
|
|
|
| @@ -314,8 +314,8 @@ enum PageshowEventPersistence {
|
| PassOwnPtr<LifecycleNotifier<DOMWindow> > createLifecycleNotifier();
|
|
|
| EventQueue* eventQueue() const;
|
| - void enqueueWindowEvent(PassRefPtr<Event>);
|
| - void enqueueDocumentEvent(PassRefPtr<Event>);
|
| + void enqueueWindowEvent(PassRefPtrWillBeRawPtr<Event>);
|
| + void enqueueDocumentEvent(PassRefPtrWillBeRawPtr<Event>);
|
| void enqueuePageshowEvent(PageshowEventPersistence);
|
| void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
|
| void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>);
|
|
|