Changeset 195985 in webkit
- Timestamp:
- Feb 1, 2016, 3:55:07 PM (9 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebKit2/ChangeLog ¶
r195983 r195985 1 2016-02-01 Dan Bernstein <mitz@apple.com> 2 3 [Cocoa] Remove some more __has_include guards 4 https://bugs.webkit.org/show_bug.cgi?id=153774 5 6 Reviewed by Tim Horton. 7 8 Guard private header includes with #if USE(APPLE_INTERNAL_SDK) rather than with __has_include. 9 10 * Platform/IPC/mac/ConnectionMac.mm: 11 * Platform/IPC/mac/ImportanceAssertion.h: 12 * Shared/EntryPointUtilities/mac/XPCService/XPCServiceEntryPoint.h: 13 * Shared/cf/ArgumentCodersCF.cpp: 14 * Shared/mac/ChildProcessMac.mm: 15 * Shared/mac/SecItemShim.cpp: 16 1 17 2016-02-01 Dan Bernstein <mitz@apple.com> 2 18 -
TabularUnified trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm ¶
r194496 r195985 42 42 #include <UIKit/UIAccessibility.h> 43 43 44 #if __has_include(<AXRuntime/AXNotificationConstants.h>)44 #if USE(APPLE_INTERNAL_SDK) 45 45 #include <AXRuntime/AXDefines.h> 46 46 #include <AXRuntime/AXNotificationConstants.h> … … 51 51 #endif 52 52 53 #if __has_include(<HIServices/AccessibilityPriv.h>)53 #if USE(APPLE_INTERNAL_SDK) 54 54 #include <HIServices/AccessibilityPriv.h> 55 55 #else -
TabularUnified trunk/Source/WebKit2/Platform/IPC/mac/ImportanceAssertion.h ¶
r194318 r195985 29 29 #if PLATFORM(MAC) 30 30 31 #if __has_include(<libproc_internal.h>)31 #if USE(APPLE_INTERNAL_SDK) 32 32 #include <libproc_internal.h> 33 33 #endif -
TabularUnified trunk/Source/WebKit2/Shared/EntryPointUtilities/mac/XPCService/XPCServiceEntryPoint.h ¶
r194496 r195985 33 33 34 34 #if HAVE(VOUCHERS) 35 #if __has_include(<os/voucher_private.h>)35 #if USE(APPLE_INTERNAL_SDK) 36 36 #include <os/voucher_private.h> 37 37 #else -
TabularUnified trunk/Source/WebKit2/Shared/cf/ArgumentCodersCF.cpp ¶
r175374 r195985 37 37 #endif 38 38 39 #if defined(__has_include) && __has_include(<Security/SecIdentityPriv.h>)39 #if USE(APPLE_INTERNAL_SDK) 40 40 #include <Security/SecIdentityPriv.h> 41 41 #endif … … 44 44 45 45 #if PLATFORM(IOS) 46 #if defined(__has_include) && __has_include(<Security/SecKeyPriv.h>)46 #if USE(APPLE_INTERNAL_SDK) 47 47 #include <Security/SecKeyPriv.h> 48 48 #endif … … 52 52 53 53 #if HAVE(SEC_ACCESS_CONTROL) 54 #if defined(__has_include) && __has_include(<Security/SecAccessControlPriv.h>)54 #if USE(APPLE_INTERNAL_SDK) 55 55 #include <Security/SecAccessControlPriv.h> 56 56 #endif -
TabularUnified trunk/Source/WebKit2/Shared/mac/ChildProcessMac.mm ¶
r194668 r195985 42 42 #import <wtf/spi/darwin/SandboxSPI.h> 43 43 44 #ifdef __has_include 45 #if __has_include(<HIServices/ProcessesPriv.h>) 44 #if USE(APPLE_INTERNAL_SDK) 46 45 #include <HIServices/ProcessesPriv.h> 47 #endif48 46 #endif 49 47 -
TabularUnified trunk/Source/WebKit2/Shared/mac/SecItemShim.cpp ¶
r180054 r195985 42 42 #include <wtf/NeverDestroyed.h> 43 43 44 #if __has_include(<CFNetwork/CFURLConnectionPriv.h>)44 #if USE(APPLE_INTERNAL_SDK) 45 45 #include <CFNetwork/CFURLConnectionPriv.h> 46 46 #else
Note:
See TracChangeset
for help on using the changeset viewer.