| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006, 2007, 2008, 2009, 2010 Apple Computer, Inc. All rights reserv
ed. | 2 * Copyright 2006, 2007, 2008, 2009, 2010 Apple Computer, Inc. All rights reserv
ed. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 NSData *(*wkFilterAddData)(WebFilterEvaluator *, NSData *); | 217 NSData *(*wkFilterAddData)(WebFilterEvaluator *, NSData *); |
| 218 NSData *(*wkFilterDataComplete)(WebFilterEvaluator *); | 218 NSData *(*wkFilterDataComplete)(WebFilterEvaluator *); |
| 219 #endif | 219 #endif |
| 220 | 220 |
| 221 #if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080 | 221 #if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080 |
| 222 CGFloat (*wkNSElasticDeltaForTimeDelta)(CGFloat initialPosition, CGFloat initial
Velocity, CGFloat elapsedTime); | 222 CGFloat (*wkNSElasticDeltaForTimeDelta)(CGFloat initialPosition, CGFloat initial
Velocity, CGFloat elapsedTime); |
| 223 CGFloat (*wkNSElasticDeltaForReboundDelta)(CGFloat delta); | 223 CGFloat (*wkNSElasticDeltaForReboundDelta)(CGFloat delta); |
| 224 CGFloat (*wkNSReboundDeltaForElasticDelta)(CGFloat delta); | 224 CGFloat (*wkNSReboundDeltaForElasticDelta)(CGFloat delta); |
| 225 #endif | 225 #endif |
| 226 | 226 |
| 227 #if ENABLE(PUBLIC_SUFFIX_LIST) | |
| 228 bool (*wkIsPublicSuffix)(NSString *host); | |
| 229 #endif | |
| 230 | |
| 231 #if ENABLE(CACHE_PARTITIONING) | 227 #if ENABLE(CACHE_PARTITIONING) |
| 232 CFStringRef (*wkCachePartitionKey)(void); | 228 CFStringRef (*wkCachePartitionKey)(void); |
| 233 #endif | 229 #endif |
| OLD | NEW |