Index: Source/core/events/BeforeTextInsertedEvent.h |
diff --git a/Source/core/events/BeforeTextInsertedEvent.h b/Source/core/events/BeforeTextInsertedEvent.h |
index aff56a45e4e75131349249555bac06aad7ad01a4..fe0f3f7c27c867b48da8abc2fd8d5bf50688fba8 100644 |
--- a/Source/core/events/BeforeTextInsertedEvent.h |
+++ b/Source/core/events/BeforeTextInsertedEvent.h |
@@ -34,9 +34,9 @@ class BeforeTextInsertedEvent FINAL : public Event { |
public: |
virtual ~BeforeTextInsertedEvent(); |
- static PassRefPtrWillBeRawPtr<BeforeTextInsertedEvent> create(const String& text) |
+ static PassRefPtr<BeforeTextInsertedEvent> create(const String& text) |
{ |
- return adoptRefWillBeRefCountedGarbageCollected(new BeforeTextInsertedEvent(text)); |
+ return adoptRef(new BeforeTextInsertedEvent(text)); |
} |
virtual const AtomicString& interfaceName() const OVERRIDE; |