X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fxml%2FXMLHttpRequestProgressEvent.h;h=58696cf41a46d1ee557b3c234c25067dd7e683db;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=30fbaac6f25f91345355c7fa6cc3b3b59cb077c6;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.h b/src/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.h index 30fbaac..58696cf 100644 --- a/src/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.h +++ b/src/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.h @@ -35,11 +35,11 @@ class XMLHttpRequestProgressEvent FINAL : public ProgressEvent { public: static PassRefPtrWillBeRawPtr create() { - return adoptRefWillBeRefCountedGarbageCollected(new XMLHttpRequestProgressEvent); + return adoptRefWillBeNoop(new XMLHttpRequestProgressEvent); } static PassRefPtrWillBeRawPtr create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0) { - return adoptRefWillBeRefCountedGarbageCollected(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total)); + return adoptRefWillBeNoop(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total)); } // Those 2 synonyms are included for compatibility with Firefox.