Title: [194161] trunk/Source/WebCore
Revision
194161
Author
[email protected]
Date
2015-12-16 10:52:04 -0800 (Wed, 16 Dec 2015)

Log Message

Build fix after r194156.

* platform/network/cf/ResourceHandleCFNet.cpp:
(WebCore::ResourceHandle::createCFURLConnection):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (194160 => 194161)


--- trunk/Source/WebCore/ChangeLog	2015-12-16 18:43:54 UTC (rev 194160)
+++ trunk/Source/WebCore/ChangeLog	2015-12-16 18:52:04 UTC (rev 194161)
@@ -1,3 +1,10 @@
+2015-12-16  Alex Christensen  <[email protected]>
+
+        Build fix after r194156.
+
+        * platform/network/cf/ResourceHandleCFNet.cpp:
+        (WebCore::ResourceHandle::createCFURLConnection):
+
 2015-12-16  Brady Eidson  <[email protected]>
 
         Modern IDB: Combine handling open requests, delete requests, and transactions into one timer.

Modified: trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp (194160 => 194161)


--- trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp	2015-12-16 18:43:54 UTC (rev 194160)
+++ trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp	2015-12-16 18:52:04 UTC (rev 194161)
@@ -208,7 +208,8 @@
     else
         propertiesDictionary = adoptCF(CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
 #if HAVE(TIMINGDATAOPTIONS)
-    auto enableW3CNavigationTiming = adoptCF(CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt64Type, &_TimingDataOptionsEnableW3CNavigationTiming));
+    int64_t value = static_cast<int64_t>(_TimingDataOptionsEnableW3CNavigationTiming);
+    auto enableW3CNavigationTiming = adoptCF(CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt64Type, &value));
     auto timingDataOptionsDictionary = adoptCF(CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
     CFDictionaryAddValue(timingDataOptionsDictionary.get(), CFSTR("_kCFURLConnectionPropertyTimingDataOptions"), enableW3CNavigationTiming.get());
     CFDictionaryAddValue(propertiesDictionary.get(), CFSTR("kCFURLConnectionURLConnectionProperties"), timingDataOptionsDictionary.get());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to