Changeset 194161 in webkit


Ignore:
Timestamp:
Dec 16, 2015, 10:52:04 AM (10 years ago)
Author:
achristensen@apple.com
Message:

Build fix after r194156.

  • platform/network/cf/ResourceHandleCFNet.cpp:

(WebCore::ResourceHandle::createCFURLConnection):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r194160 r194161  
     12015-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
    182015-12-16  Brady Eidson  <beidson@apple.com>
    29
  • trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp

    r194159 r194161  
    209209        propertiesDictionary = adoptCF(CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
    210210#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));
    212213    auto timingDataOptionsDictionary = adoptCF(CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
    213214    CFDictionaryAddValue(timingDataOptionsDictionary.get(), CFSTR("_kCFURLConnectionPropertyTimingDataOptions"), enableW3CNavigationTiming.get());
Note: See TracChangeset for help on using the changeset viewer.