Changeset 201212 in webkit


Ignore:
Timestamp:
May 19, 2016, 11:35:24 PM (9 years ago)
Author:
timothy_horton@apple.com
Message:

REGRESSION (r200638): -[DOMHTMLVideoElement play] disappeared from ObjC bindings
https://bugs.webkit.org/show_bug.cgi?id=157940
<rdar://problem/26385907>

Reviewed by Dan Bernstein.

  • html/HTMLMediaElement.idl:

Drop the return value of play from the ObjC bindings, because the bindings
generator doesn't seem to know what to do with a Promise.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r201205 r201212  
     12016-05-19  Tim Horton  <timothy_horton@apple.com>
     2
     3        REGRESSION (r200638): -[DOMHTMLVideoElement play] disappeared from ObjC bindings
     4        https://bugs.webkit.org/show_bug.cgi?id=157940
     5        <rdar://problem/26385907>
     6
     7        Reviewed by Dan Bernstein.
     8
     9        * html/HTMLMediaElement.idl:
     10        Drop the return value of play from the ObjC bindings, because the bindings
     11        generator doesn't seem to know what to do with a Promise.
     12
    1132016-05-19  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/WebCore/html/HTMLMediaElement.idl

    r200638 r201212  
    7676    [Reflect] attribute boolean autoplay;
    7777    [Reflect] attribute boolean loop;
     78#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C
    7879    Promise play();
     80#else
     81    void play();
     82#endif
    7983    void pause();
    8084    void fastSeek(unrestricted double time);
Note: See TracChangeset for help on using the changeset viewer.