| Index: Source/core/events/FocusEvent.h
|
| diff --git a/Source/core/events/FocusEvent.h b/Source/core/events/FocusEvent.h
|
| index fd66f186ec78a96005a68975858db3f7a94e0436..90477b28040f1abe73ba2564c1919f536adef71e 100644
|
| --- a/Source/core/events/FocusEvent.h
|
| +++ b/Source/core/events/FocusEvent.h
|
| @@ -46,7 +46,7 @@ public:
|
| return adoptRef(new FocusEvent);
|
| }
|
|
|
| - static PassRefPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, EventTarget* relatedTarget)
|
| + static PassRefPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget)
|
| {
|
| return adoptRef(new FocusEvent(type, canBubble, cancelable, view, detail, relatedTarget));
|
| }
|
| @@ -67,7 +67,7 @@ public:
|
|
|
| private:
|
| FocusEvent();
|
| - FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int, EventTarget*);
|
| + FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int, EventTarget*);
|
| FocusEvent(const AtomicString& type, const FocusEventInit&);
|
|
|
| RefPtr<EventTarget> m_relatedTarget;
|
|
|