Changeset 194161 in webkit
- Timestamp:
- Dec 16, 2015, 10:52:04 AM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r194160 r194161 1 2015-12-16 Alex Christensen <achristensen@webkit.org> 2 3 Build fix after r194156. 4 5 * platform/network/cf/ResourceHandleCFNet.cpp: 6 (WebCore::ResourceHandle::createCFURLConnection): 7 1 8 2015-12-16 Brady Eidson <beidson@apple.com> 2 9 -
trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp
r194159 r194161 209 209 propertiesDictionary = adoptCF(CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks)); 210 210 #if HAVE(TIMINGDATAOPTIONS) 211 auto enableW3CNavigationTiming = adoptCF(CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt64Type, &_TimingDataOptionsEnableW3CNavigationTiming)); 211 int64_t value = static_cast<int64_t>(_TimingDataOptionsEnableW3CNavigationTiming); 212 auto enableW3CNavigationTiming = adoptCF(CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt64Type, &value)); 212 213 auto timingDataOptionsDictionary = adoptCF(CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks)); 213 214 CFDictionaryAddValue(timingDataOptionsDictionary.get(), CFSTR("_kCFURLConnectionPropertyTimingDataOptions"), enableW3CNavigationTiming.get());
Note:
See TracChangeset
for help on using the changeset viewer.