From https://bugs.webkit.org/show_bug.cgi?id=73721: > Source/WebCore/page/Settings.cpp:854 > +#if ENABLE(VIDEO_TRACK) > +void Settings::setShouldDisplaySubtitles(bool flag) > +{ > + m_shouldDisplaySubtitles = flag; > +} > + > +void Settings::setShouldDisplayCaptions(bool flag) > +{ > + m_shouldDisplayCaptions = flag; > +} > + > +void Settings::setShouldDisplayTextDescriptions(bool flag) > +{ > + m_shouldDisplayTextDescriptions = flag; > +} > +#endif Why this change? You moved these into the cpp file, but they are the same as what was in the .h file?
<rdar://problem/10531518>
Created attachment 117960 [details] Proposed patch
Comment on attachment 117960 [details] Proposed patch Clearing flags on attachment: 117960 Committed r102154: <http://trac.webkit.org/changeset/102154>
All reviewed patches have been landed. Closing bug.