Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(665)

Unified Diff: Source/core/events/ErrorEvent.h

Issue 185393006: Revert "Add [WillBeGarbageCollected] to Event.idl" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/events/ErrorEvent.h
diff --git a/Source/core/events/ErrorEvent.h b/Source/core/events/ErrorEvent.h
index 6aa60ce08541f17e8be252575a69607e02c6e94a..cd1be4d864df7952b900225550fe075f60630848 100644
--- a/Source/core/events/ErrorEvent.h
+++ b/Source/core/events/ErrorEvent.h
@@ -49,17 +49,17 @@ struct ErrorEventInit : public EventInit {
class ErrorEvent FINAL : public Event {
public:
- static PassRefPtrWillBeRawPtr<ErrorEvent> create()
+ static PassRefPtr<ErrorEvent> create()
{
- return adoptRefWillBeRefCountedGarbageCollected(new ErrorEvent);
+ return adoptRef(new ErrorEvent);
}
- static PassRefPtrWillBeRawPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, PassRefPtr<DOMWrapperWorld> world)
+ static PassRefPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, PassRefPtr<DOMWrapperWorld> world)
{
- return adoptRefWillBeRefCountedGarbageCollected(new ErrorEvent(message, fileName, lineNumber, columnNumber, world));
+ return adoptRef(new ErrorEvent(message, fileName, lineNumber, columnNumber, world));
}
- static PassRefPtrWillBeRawPtr<ErrorEvent> create(const AtomicString& type, const ErrorEventInit& initializer)
+ static PassRefPtr<ErrorEvent> create(const AtomicString& type, const ErrorEventInit& initializer)
{
- return adoptRefWillBeRefCountedGarbageCollected(new ErrorEvent(type, initializer));
+ return adoptRef(new ErrorEvent(type, initializer));
}
static PassRefPtr<ErrorEvent> createSanitizedError(PassRefPtr<DOMWrapperWorld> world)
{

Powered by Google App Engine
This is Rietveld 408576698