Title: [88398] trunk/Source/WebCore
- Revision
- 88398
- Author
- [email protected]
- Date
- 2011-06-08 15:38:48 -0700 (Wed, 08 Jun 2011)
Log Message
2011-06-08 Tim Horton <[email protected]>
Reviewed by Ryosuke Niwa.
Use correct CFURLStorageSessionRef definition on Leopard, as
we created an inconsistency in const-ness between
WebCoreSystemInterface.h and these two files in the case
of Leopard only.
https://bugs.webkit.org/show_bug.cgi?id=62223
* platform/network/ResourceHandle.h:
* platform/network/cf/ResourceRequest.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (88397 => 88398)
--- trunk/Source/WebCore/ChangeLog 2011-06-08 22:35:08 UTC (rev 88397)
+++ trunk/Source/WebCore/ChangeLog 2011-06-08 22:38:48 UTC (rev 88398)
@@ -1,3 +1,16 @@
+2011-06-08 Tim Horton <[email protected]>
+
+ Reviewed by Ryosuke Niwa.
+
+ Use correct CFURLStorageSessionRef definition on Leopard, as
+ we created an inconsistency in const-ness between
+ WebCoreSystemInterface.h and these two files in the case
+ of Leopard only.
+ https://bugs.webkit.org/show_bug.cgi?id=62223
+
+ * platform/network/ResourceHandle.h:
+ * platform/network/cf/ResourceRequest.h:
+
2011-06-08 Sailesh Agrawal <[email protected]>
Reviewed by Mihai Parparita.
Modified: trunk/Source/WebCore/platform/network/ResourceHandle.h (88397 => 88398)
--- trunk/Source/WebCore/platform/network/ResourceHandle.h 2011-06-08 22:35:08 UTC (rev 88397)
+++ trunk/Source/WebCore/platform/network/ResourceHandle.h 2011-06-08 22:38:48 UTC (rev 88398)
@@ -70,7 +70,7 @@
typedef struct OpaqueCFHTTPCookieStorage* CFHTTPCookieStorageRef;
#endif
-#if USE(CFURLSTORAGESESSIONS) && defined(BUILDING_ON_SNOW_LEOPARD)
+#if USE(CFURLSTORAGESESSIONS) && (defined(BUILDING_ON_SNOW_LEOPARD) || defined(BUILDING_ON_LEOPARD))
typedef struct __CFURLStorageSession* CFURLStorageSessionRef;
#elif USE(CFURLSTORAGESESSIONS)
typedef const struct __CFURLStorageSession* CFURLStorageSessionRef;
Modified: trunk/Source/WebCore/platform/network/cf/ResourceRequest.h (88397 => 88398)
--- trunk/Source/WebCore/platform/network/cf/ResourceRequest.h 2011-06-08 22:35:08 UTC (rev 88397)
+++ trunk/Source/WebCore/platform/network/cf/ResourceRequest.h 2011-06-08 22:38:48 UTC (rev 88398)
@@ -40,7 +40,7 @@
#endif
#endif
-#if USE(CFURLSTORAGESESSIONS) && defined(BUILDING_ON_SNOW_LEOPARD)
+#if USE(CFURLSTORAGESESSIONS) && (defined(BUILDING_ON_SNOW_LEOPARD) || defined(BUILDING_ON_LEOPARD))
typedef struct __CFURLStorageSession* CFURLStorageSessionRef;
#elif USE(CFURLSTORAGESESSIONS)
typedef const struct __CFURLStorageSession* CFURLStorageSessionRef;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes