OLD | NEW |
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 13 matching lines...) Expand all Loading... |
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 | 33 |
34 namespace WebCore { | 34 namespace blink { |
35 | 35 |
36 class Document; | 36 class Document; |
37 | 37 |
38 class SpeechRecognitionEventInit : public EventInit { | 38 class SpeechRecognitionEventInit : public EventInit { |
39 public: | 39 public: |
40 SpeechRecognitionEventInit(); | 40 SpeechRecognitionEventInit(); |
41 | 41 |
42 unsigned long resultIndex; | 42 unsigned long resultIndex; |
43 Member<SpeechRecognitionResultList> results; | 43 Member<SpeechRecognitionResultList> results; |
44 }; | 44 }; |
(...skipping 21 matching lines...) Expand all Loading... |
66 | 66 |
67 private: | 67 private: |
68 SpeechRecognitionEvent(); | 68 SpeechRecognitionEvent(); |
69 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit
&); | 69 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit
&); |
70 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn
dex, SpeechRecognitionResultList* results); | 70 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn
dex, SpeechRecognitionResultList* results); |
71 | 71 |
72 unsigned long m_resultIndex; | 72 unsigned long m_resultIndex; |
73 PersistentWillBeMember<SpeechRecognitionResultList> m_results; | 73 PersistentWillBeMember<SpeechRecognitionResultList> m_results; |
74 }; | 74 }; |
75 | 75 |
76 } // namespace WebCore | 76 } // namespace blink |
77 | 77 |
78 #endif // SpeechRecognitionEvent_h | 78 #endif // SpeechRecognitionEvent_h |
OLD | NEW |