Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / events / PageTransitionEvent.h
index a33262a..b8b1ba4 100644 (file)
@@ -40,15 +40,15 @@ class PageTransitionEvent FINAL : public Event {
 public:
     static PassRefPtrWillBeRawPtr<PageTransitionEvent> create()
     {
-        return adoptRefWillBeRefCountedGarbageCollected(new PageTransitionEvent);
+        return adoptRefWillBeNoop(new PageTransitionEvent);
     }
     static PassRefPtrWillBeRawPtr<PageTransitionEvent> create(const AtomicString& type, bool persisted)
     {
-        return adoptRefWillBeRefCountedGarbageCollected(new PageTransitionEvent(type, persisted));
+        return adoptRefWillBeNoop(new PageTransitionEvent(type, persisted));
     }
     static PassRefPtrWillBeRawPtr<PageTransitionEvent> create(const AtomicString& type, const PageTransitionEventInit& initializer)
     {
-        return adoptRefWillBeRefCountedGarbageCollected(new PageTransitionEvent(type, initializer));
+        return adoptRefWillBeNoop(new PageTransitionEvent(type, initializer));
     }
 
     virtual ~PageTransitionEvent();