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

Unified Diff: Source/core/speech/SpeechInputEvent.cpp

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/speech/SpeechInputEvent.cpp
diff --git a/Source/core/speech/SpeechInputEvent.cpp b/Source/core/speech/SpeechInputEvent.cpp
index 8464a79d2b82cac607c64ec46ef2e5817c91e271..8d88763215696358abe5faa67378c62e1f4da3da 100644
--- a/Source/core/speech/SpeechInputEvent.cpp
+++ b/Source/core/speech/SpeechInputEvent.cpp
@@ -38,14 +38,14 @@
namespace WebCore {
-PassRefPtrWillBeRawPtr<SpeechInputEvent> SpeechInputEvent::create()
+PassRefPtr<SpeechInputEvent> SpeechInputEvent::create()
{
- return adoptRefWillBeRefCountedGarbageCollected(new SpeechInputEvent);
+ return adoptRef(new SpeechInputEvent);
}
-PassRefPtrWillBeRawPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventType, const SpeechInputResultArray& results)
+PassRefPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventType, const SpeechInputResultArray& results)
{
- return adoptRefWillBeRefCountedGarbageCollected(new SpeechInputEvent(eventType, results));
+ return adoptRef(new SpeechInputEvent(eventType, results));
}
SpeechInputEvent::SpeechInputEvent()

Powered by Google App Engine
This is Rietveld 408576698