| Index: third_party/WebKit/Source/core/events/EventFactory.h
|
| diff --git a/third_party/WebKit/Source/core/events/EventFactory.h b/third_party/WebKit/Source/core/events/EventFactory.h
|
| index b830dc9912dc38c41dda74dcaa2b1222534605af..7b97af099fb243ce573e03c2a10f4cdf8ccc543b 100644
|
| --- a/third_party/WebKit/Source/core/events/EventFactory.h
|
| +++ b/third_party/WebKit/Source/core/events/EventFactory.h
|
| @@ -39,7 +39,7 @@ class ExecutionContext;
|
| class EventFactoryBase {
|
| USING_FAST_MALLOC(EventFactoryBase);
|
| public:
|
| - virtual PassRefPtrWillBeRawPtr<Event> create(ExecutionContext*, const String& eventType) = 0;
|
| + virtual RawPtr<Event> create(ExecutionContext*, const String& eventType) = 0;
|
| virtual ~EventFactoryBase() { }
|
|
|
| protected:
|
| @@ -53,7 +53,7 @@ public:
|
| return adoptPtr(new EventFactory());
|
| }
|
|
|
| - PassRefPtrWillBeRawPtr<Event> create(ExecutionContext*, const String& eventType) override;
|
| + RawPtr<Event> create(ExecutionContext*, const String& eventType) override;
|
| };
|
|
|
| } // namespace blink
|
|
|