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

Changeset 245861 in webkit


Ignore:
Timestamp:
May 29, 2019, 12:16:35 PM (7 years ago)
Author:
Keith Rollin
Message:

Fix builds that don't use makeWindowFromView
https://bugs.webkit.org/show_bug.cgi?id=198342
<rdar://problem/51228563>

Reviewed by Wenson Hsieh.

In some configurations, VideoFullscreenInterfaceAVKit.mm declares but
does not use makeWindowFromView. Fix by conditionalizing the the
declaration on the same symbol as point where it's used.

No new tests -- no new functionality.

  • platform/ios/VideoFullscreenInterfaceAVKit.mm:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r245857 r245861  
     12019-05-29  Keith Rollin  <krollin@apple.com>
     2
     3        Fix builds that don't use makeWindowFromView
     4        https://bugs.webkit.org/show_bug.cgi?id=198342
     5        <rdar://problem/51228563>
     6
     7        Reviewed by Wenson Hsieh.
     8
     9        In some configurations, VideoFullscreenInterfaceAVKit.mm declares but
     10        does not use makeWindowFromView. Fix by conditionalizing the the
     11        declaration on the same symbol as point where it's used.
     12
     13        No new tests -- no new functionality.
     14
     15        * platform/ios/VideoFullscreenInterfaceAVKit.mm:
     16
    1172019-05-28  Geoffrey Garen  <ggaren@apple.com>
    218
  • trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm

    r245614 r245861  
    11781178}
    11791179
     1180#if !PLATFORM(WATCHOS)
    11801181#if USE(APPLE_INTERNAL_SDK)
    11811182#import <WebKitAdditions/VideoFullscreenInterfaceAVKitAdditions.mm>
     
    11851186    return adoptNS([PAL::allocUIWindowInstance() initWithFrame:[[PAL::getUIScreenClass() mainScreen] bounds]]);
    11861187}
     1188#endif
    11871189#endif
    11881190
Note: See TracChangeset for help on using the changeset viewer.