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

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

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 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 | Annotate | Revision Log
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 26 matching lines...) Expand all
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 };
45 45
46 class SpeechRecognitionEvent FINAL : public Event { 46 class SpeechRecognitionEvent FINAL : public Event {
47 DEFINE_WRAPPERTYPEINFO();
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 HeapVector<Member<SpeechRecognitionResult> >& results);
53 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRe cognitionResult*); 54 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRe cognitionResult*);
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(); }
(...skipping 12 matching lines...) Expand all
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, SpeechRecognitionResultList* results);
71 72
72 unsigned long m_resultIndex; 73 unsigned long m_resultIndex;
73 PersistentWillBeMember<SpeechRecognitionResultList> m_results; 74 PersistentWillBeMember<SpeechRecognitionResultList> m_results;
74 }; 75 };
75 76
76 } // namespace blink 77 } // namespace blink
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/SpeechRecognitionResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698