Changeset 239276 in webkit


Ignore:
Timestamp:
Dec 17, 2018 11:17:11 AM (5 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r239262): Fix broken builds prior to Mojave
<https://bugs.webkit.org/show_bug.cgi?id=192373>
<rdar://problem/46462670>

  • UIProcess/Cocoa/WKFullKeyboardAccessWatcher.mm:

Wrap header in ENABLE(ACCESSIBILITY_EVENTS) to fix the build.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r239275 r239276  
     12018-12-17  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r239262): Fix broken builds prior to Mojave
     4        <https://bugs.webkit.org/show_bug.cgi?id=192373>
     5        <rdar://problem/46462670>
     6
     7        * UIProcess/Cocoa/WKFullKeyboardAccessWatcher.mm:
     8        Wrap header in ENABLE(ACCESSIBILITY_EVENTS) to fix the build.
     9
    1102018-12-17  Daniel Bates  <dabates@apple.com>
    211
  • trunk/Source/WebKit/UIProcess/Cocoa/WKFullKeyboardAccessWatcher.mm

    r239262 r239276  
    2929#if PLATFORM(COCOA)
    3030
     31#import "WebProcessPool.h"
     32
     33#if ENABLE(ACCESSIBILITY_EVENTS)
    3134#import "AccessibilitySupportSPI.h"
    32 #import "WebProcessPool.h"
     35#endif
    3336
    3437#if PLATFORM(MAC)
Note: See TracChangeset for help on using the changeset viewer.