⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249010 in webkit


Ignore:
Timestamp:
Aug 22, 2019, 8:45:33 AM (7 years ago)
Author:
Kocsen Chung
Message:

Cherry-pick r248997. rdar://problem/54579627

Unreviewed build fix; add a 'final' declaration on shouldOverridePauseDuringRouteChange().

  • Modules/mediastream/MediaStream.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@248997 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-608-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-608-branch/Source/WebCore/ChangeLog

    r249009 r249010  
     12019-08-22  Kocsen Chung  <kocsen_chung@apple.com>
     2
     3        Cherry-pick r248997. rdar://problem/54579627
     4
     5    Unreviewed build fix; add a 'final' declaration on shouldOverridePauseDuringRouteChange().
     6   
     7    * Modules/mediastream/MediaStream.h:
     8   
     9    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@248997 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     10
     11    2019-08-21  Jer Noble  <jer.noble@apple.com>
     12
     13            Unreviewed build fix; add a 'final' declaration on shouldOverridePauseDuringRouteChange().
     14
     15            * Modules/mediastream/MediaStream.h:
     16
    1172019-08-21  Kocsen Chung  <kocsen_chung@apple.com>
    218
  • branches/safari-608-branch/Source/WebCore/Modules/mediastream/MediaStream.h

    r249008 r249010  
    166166    Document* hostingDocument() const final { return document(); }
    167167    bool processingUserGestureForMedia() const final;
    168     bool shouldOverridePauseDuringRouteChange() const { return true; }
     168    bool shouldOverridePauseDuringRouteChange() const final { return true; }
    169169
    170170    // ActiveDOMObject API.
Note: See TracChangeset for help on using the changeset viewer.