Title: [153340] trunk/Source/WebCore
- Revision
- 153340
- Author
- [email protected]
- Date
- 2013-07-25 13:19:28 -0700 (Thu, 25 Jul 2013)
Log Message
Unreviewed build fix after r153333.
* platform/network/cf/ResourceResponseCFNet.cpp: Remove toTimeT since it is no longer called.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (153339 => 153340)
--- trunk/Source/WebCore/ChangeLog 2013-07-25 19:36:44 UTC (rev 153339)
+++ trunk/Source/WebCore/ChangeLog 2013-07-25 20:19:28 UTC (rev 153340)
@@ -1,3 +1,9 @@
+2013-07-25 Pratik Solanki <[email protected]>
+
+ Unreviewed build fix after r153333.
+
+ * platform/network/cf/ResourceResponseCFNet.cpp: Remove toTimeT since it is no longer called.
+
2013-07-25 Christophe Dumez <[email protected]>
Unreviewed EFL build fix after r153315.
Modified: trunk/Source/WebCore/platform/network/cf/ResourceResponseCFNet.cpp (153339 => 153340)
--- trunk/Source/WebCore/platform/network/cf/ResourceResponseCFNet.cpp 2013-07-25 19:36:44 UTC (rev 153339)
+++ trunk/Source/WebCore/platform/network/cf/ResourceResponseCFNet.cpp 2013-07-25 20:19:28 UTC (rev 153340)
@@ -69,13 +69,6 @@
return dot > 0 && dot < length - 1;
}
-static time_t toTimeT(CFAbsoluteTime time)
-{
- static const double maxTimeAsDouble = std::numeric_limits<time_t>::max();
- static const double minTimeAsDouble = std::numeric_limits<time_t>::min();
- return static_cast<time_t>(min(max(minTimeAsDouble, time + kCFAbsoluteTimeIntervalSince1970), maxTimeAsDouble));
-}
-
void ResourceResponse::platformLazyInit(InitLevel initLevel)
{
if (m_initLevel > initLevel)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes