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

Side by Side Diff: Source/modules/speech/SpeechRecognitionEvent.h

Issue 330463002: Revert of Enable Oilpan by default in modules/speech/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * * Redistributions of source code must retain the above copyright 7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright 9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef SpeechRecognitionEvent_h 26 #ifndef SpeechRecognitionEvent_h
27 #define SpeechRecognitionEvent_h 27 #define SpeechRecognitionEvent_h
28 28
29 #include "modules/EventModules.h" 29 #include "modules/EventModules.h"
30 #include "modules/speech/SpeechRecognitionResult.h" 30 #include "modules/speech/SpeechRecognitionResult.h"
31 #include "modules/speech/SpeechRecognitionResultList.h" 31 #include "modules/speech/SpeechRecognitionResultList.h"
32 #include "platform/heap/Handle.h" 32 #include "platform/heap/Handle.h"
33 #include "wtf/RefPtr.h"
33 34
34 namespace WebCore { 35 namespace WebCore {
35 36
36 class Document; 37 class Document;
37 38
38 class SpeechRecognitionEventInit : public EventInit { 39 class SpeechRecognitionEventInit : public EventInit {
39 public: 40 public:
40 SpeechRecognitionEventInit(); 41 SpeechRecognitionEventInit();
41 42
42 unsigned long resultIndex; 43 unsigned long resultIndex;
43 Member<SpeechRecognitionResultList> results; 44 RefPtrWillBeMember<SpeechRecognitionResultList> results;
44 }; 45 };
45 46
46 class SpeechRecognitionEvent FINAL : public Event { 47 class SpeechRecognitionEvent FINAL : public Event {
47 public: 48 public:
48 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(); 49 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create();
49 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicStr ing&, const SpeechRecognitionEventInit&); 50 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicStr ing&, const SpeechRecognitionEventInit&);
50 virtual ~SpeechRecognitionEvent(); 51 virtual ~SpeechRecognitionEvent();
51 52
52 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createResult(unsigned long resultIndex, const HeapVector<Member<SpeechRecognitionResult> >& results); 53 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createResult(unsigned long resultIndex, const WillBeHeapVector<RefPtrWillBeMember<SpeechRecognitionRes ult> >& results);
53 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRe cognitionResult*); 54 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(PassRefP trWillBeRawPtr<SpeechRecognitionResult>);
54 55
55 unsigned long resultIndex() const { return m_resultIndex; } 56 unsigned long resultIndex() const { return m_resultIndex; }
56 SpeechRecognitionResultList* results() const { return m_results.get(); } 57 SpeechRecognitionResultList* results() const { return m_results.get(); }
57 58
58 // These two methods are here to satisfy the specification which requires th ese attrubutes to exist. 59 // These two methods are here to satisfy the specification which requires th ese attrubutes to exist.
59 Document* interpretation() { return 0; } 60 Document* interpretation() { return 0; }
60 Document* emma() { return 0; } 61 Document* emma() { return 0; }
61 62
62 // Event 63 // Event
63 virtual const AtomicString& interfaceName() const OVERRIDE; 64 virtual const AtomicString& interfaceName() const OVERRIDE;
64 65
65 virtual void trace(Visitor*) OVERRIDE; 66 virtual void trace(Visitor*) OVERRIDE;
66 67
67 private: 68 private:
68 SpeechRecognitionEvent(); 69 SpeechRecognitionEvent();
69 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit &); 70 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit &);
70 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn dex, SpeechRecognitionResultList* results); 71 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn dex, PassRefPtrWillBeRawPtr<SpeechRecognitionResultList> results);
71 72
72 unsigned long m_resultIndex; 73 unsigned long m_resultIndex;
73 PersistentWillBeMember<SpeechRecognitionResultList> m_results; 74 RefPtrWillBeMember<SpeechRecognitionResultList> m_results;
74 }; 75 };
75 76
76 } // namespace WebCore 77 } // namespace WebCore
77 78
78 #endif // SpeechRecognitionEvent_h 79 #endif // SpeechRecognitionEvent_h
OLDNEW
« no previous file with comments | « Source/modules/speech/SpeechRecognitionError.h ('k') | Source/modules/speech/SpeechRecognitionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698