Changeset 163731 in webkit
- Timestamp:
- Feb 8, 2014, 5:13:50 PM (11 years ago)
- Location:
- trunk/Source/WebKit/mac
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/mac/ChangeLog
r163717 r163731 1 2014-02-08 Dan Bernstein <mitz@apple.com> 2 3 Remove use of PLATFORM(MAC) from WebKit/mac 4 https://bugs.webkit.org/show_bug.cgi?id=128476 5 6 Reviewed by Anders Carlsson. 7 8 * WebCoreSupport/WebFrameLoaderClient.h: 9 * WebCoreSupport/WebSystemInterface.mm: 10 (InitWebCoreSystemInterface): 11 1 12 2014-02-08 Dan Bernstein <mitz@apple.com> 2 13 -
trunk/Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.h
r162786 r163731 223 223 #endif 224 224 225 #if PLATFORM(MAC)226 225 virtual RemoteAXObjectRef accessibilityRemoteObject() override { return 0; } 227 #endif228 226 229 227 RetainPtr<WebFramePolicyListener> setUpPolicyListener(WebCore::FramePolicyFunction); -
trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm
r162114 r163731 52 52 INIT(CGPatternCreateWithImageAndTransform); 53 53 INIT(CGContextResetClip); 54 #if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 108054 #if !PLATFORM(IOS) 55 55 INIT(CGContextDrawsWithCorrectShadowOffsets); 56 56 #endif … … 61 61 INIT(CopyCONNECTProxyResponse); 62 62 INIT(CopyNSURLResponseStatusLine); 63 #if PLATFORM(MAC)64 63 INIT(CopyNSURLResponseCertificateChain); 65 #endif66 64 INIT(CreateCustomCFReadStream); 67 65 #if !PLATFORM(IOS) … … 85 83 INIT(GetPreferredExtensionForMIMEType); 86 84 INIT(GetWheelEventDeltas); 87 #if PLATFORM(MAC)88 85 INIT(GetNSEventKeyChar); 89 #endif90 86 INIT(HitTestMediaUIPart); 91 87 #endif … … 176 172 177 173 #if !PLATFORM(IOS) 178 #if PLATFORM(MAC)179 174 INIT(SpeechSynthesisGetVoiceIdentifiers); 180 175 INIT(SpeechSynthesisGetDefaultVoiceIdentifierForLocale); 181 #endif182 176 INIT(GetAXTextMarkerTypeID); 183 177 INIT(GetAXTextMarkerRangeTypeID); … … 195 189 INIT(CopyHTTPCookieStorage); 196 190 INIT(GetHTTPCookieAcceptPolicy); 197 #if PLATFORM(MAC)198 191 INIT(HTTPCookies); 199 #endif200 192 INIT(HTTPCookiesForURL); 201 193 INIT(SetHTTPCookiesForURL); 202 #if PLATFORM(MAC)203 194 INIT(DeleteAllHTTPCookies); 204 #endif205 195 INIT(DeleteHTTPCookie); 206 196 … … 215 205 #endif 216 206 217 #if PLATFORM(MAC)218 // FIXME: We should stop using this file in Chromium.219 220 207 INIT(DestroyRenderingResources); 221 208 222 209 #if !PLATFORM(IOS) 223 210 INIT(CreateVMPressureDispatchOnMainQueue); 224 #endif 225 226 #if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 211 212 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 227 213 INIT(CreateMemoryStatusPressureCriticalDispatchOnMainQueue); 228 214 #endif 229 215 230 #if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080231 216 INIT(ExecutableWasLinkedOnOrBeforeLion); 232 217 #endif … … 244 229 #endif 245 230 246 #if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080231 #if !PLATFORM(IOS) 247 232 INIT(NSElasticDeltaForTimeDelta); 248 233 INIT(NSElasticDeltaForReboundDelta); … … 258 243 #endif 259 244 260 #endif261 245 didInit = true; 262 246 }
Note:
See TracChangeset
for help on using the changeset viewer.