Title: [176802] trunk/Source/WebKit2
- Revision
- 176802
- Author
- [email protected]
- Date
- 2014-12-04 09:41:51 -0800 (Thu, 04 Dec 2014)
Log Message
URTBF after r176794.
* UIProcess/Storage/LocalStorageDatabaseTracker.cpp:
(WebKit::fileCreationTime):
(WebKit::fileModificationTime):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (176801 => 176802)
--- trunk/Source/WebKit2/ChangeLog 2014-12-04 17:40:05 UTC (rev 176801)
+++ trunk/Source/WebKit2/ChangeLog 2014-12-04 17:41:51 UTC (rev 176802)
@@ -1,3 +1,11 @@
+2014-12-04 Csaba Osztrogonác <[email protected]>
+
+ URTBF after r176794.
+
+ * UIProcess/Storage/LocalStorageDatabaseTracker.cpp:
+ (WebKit::fileCreationTime):
+ (WebKit::fileModificationTime):
+
2014-12-03 Anders Carlsson <[email protected]>
Add a way to delete local storage origins modified after a given date
Modified: trunk/Source/WebKit2/UIProcess/Storage/LocalStorageDatabaseTracker.cpp (176801 => 176802)
--- trunk/Source/WebKit2/UIProcess/Storage/LocalStorageDatabaseTracker.cpp 2014-12-04 17:40:05 UTC (rev 176801)
+++ trunk/Source/WebKit2/UIProcess/Storage/LocalStorageDatabaseTracker.cpp 2014-12-04 17:41:51 UTC (rev 176802)
@@ -128,13 +128,13 @@
static Optional<time_t> fileCreationTime(const String& filePath)
{
time_t time;
- return getFileCreationTime(filePath, time) ? time : Nullopt;
+ return getFileCreationTime(filePath, time) ? time : Optional<time_t>(Nullopt);
}
static Optional<time_t> fileModificationTime(const String& filePath)
{
time_t time;
- return getFileModificationTime(filePath, time) ? time : Nullopt;
+ return getFileModificationTime(filePath, time) ? time : Optional<time_t>(Nullopt);
}
Vector<RefPtr<SecurityOrigin>> LocalStorageDatabaseTracker::deleteDatabasesModifiedSince(time_t time)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes