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

Unified Diff: Source/modules/speech/SpeechRecognitionEvent.h

Issue 208313010: Replace raw pointers to GC allocated objects by members in stack allocated objects. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make Dictionary allow_only_inline_alloc Created 6 years, 9 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
« no previous file with comments | « Source/modules/filesystem/SyncCallbackHelper.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechRecognitionEvent.h
diff --git a/Source/modules/speech/SpeechRecognitionEvent.h b/Source/modules/speech/SpeechRecognitionEvent.h
index 7ab8eb66662a85409f093007c0c7a0f81a5e5e01..59d58a6b81cc9ccb120cb640f6250eddada6eebb 100644
--- a/Source/modules/speech/SpeechRecognitionEvent.h
+++ b/Source/modules/speech/SpeechRecognitionEvent.h
@@ -38,12 +38,11 @@ namespace WebCore {
class Document;
class SpeechRecognitionEventInit : public EventInit {
- DISALLOW_ALLOCATION();
public:
SpeechRecognitionEventInit();
unsigned long resultIndex;
- RefPtrWillBeRawPtr<SpeechRecognitionResultList> results;
+ RefPtrWillBeMember<SpeechRecognitionResultList> results;
};
class SpeechRecognitionEvent FINAL : public Event {
« no previous file with comments | « Source/modules/filesystem/SyncCallbackHelper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698