Changeset 268780 in webkit
- Timestamp:
- Oct 20, 2020, 6:40:13 PM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 4 edited
-
WTF/ChangeLog (modified) (1 diff)
-
WTF/wtf/PlatformEnable.h (modified) (1 diff)
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/Modules/speech/SpeechRecognitionResultList.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r268762 r268780 1 2020-10-20 Sihui Liu <sihui_liu@apple.com> 2 3 Add stubs for SpeechRecognition 4 https://bugs.webkit.org/show_bug.cgi?id=217780 5 <rdar://problem/70350727> 6 7 Unreviewed build fix after r268762, which sets ENABLE_SPEECH_SYNTHESIS by mistake. 8 9 * wtf/PlatformEnable.h: 10 1 11 2020-10-20 Sihui Liu <sihui_liu@apple.com> 2 12 -
trunk/Source/WTF/wtf/PlatformEnable.h
r268762 r268780 447 447 448 448 #if !defined(ENABLE_SPEECH_SYNTHESIS) 449 #define ENABLE_SPEECH_SYNTHESIS 1450 #endif451 452 #if !defined(ENABLE_SPEECH_SYNTHESIS)453 449 #define ENABLE_SPEECH_SYNTHESIS 0 454 450 #endif -
trunk/Source/WebCore/ChangeLog
r268775 r268780 1 2020-10-20 Sihui Liu <sihui_liu@apple.com> 2 3 Add stubs for SpeechRecognition 4 https://bugs.webkit.org/show_bug.cgi?id=217780 5 <rdar://problem/70350727> 6 7 Unreviewed build fix after r268762. 8 9 * Modules/speech/SpeechRecognitionResultList.h: 10 1 11 2020-10-20 Chris Dumez <cdumez@apple.com> 2 12 -
trunk/Source/WebCore/Modules/speech/SpeechRecognitionResultList.h
r268762 r268780 39 39 static Ref<SpeechRecognitionResultList> create(Vector<Ref<SpeechRecognitionResult>>&&); 40 40 41 boollength() const { return m_list.size(); }41 unsigned long length() const { return m_list.size(); } 42 42 SpeechRecognitionResult* item(uint64_t index) const; 43 43
Note:
See TracChangeset
for help on using the changeset viewer.