Title: [184913] trunk/Source/WebKit2
Revision
184913
Author
[email protected]
Date
2015-05-27 12:00:22 -0700 (Wed, 27 May 2015)

Log Message

Address a follow-up review comment from Darin.

* UIProcess/WebsiteData/WebsiteDataStore.cpp:
(WebKit::WebsiteDataStore::removeMediaKeys):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (184912 => 184913)


--- trunk/Source/WebKit2/ChangeLog	2015-05-27 18:53:49 UTC (rev 184912)
+++ trunk/Source/WebKit2/ChangeLog	2015-05-27 19:00:22 UTC (rev 184913)
@@ -1,3 +1,10 @@
+2015-05-27  Anders Carlsson  <[email protected]>
+
+        Address a follow-up review comment from Darin.
+
+        * UIProcess/WebsiteData/WebsiteDataStore.cpp:
+        (WebKit::WebsiteDataStore::removeMediaKeys):
+
 2015-05-26  Anders Carlsson  <[email protected]>
 
         WKWebsiteDataStore should handle media keys

Modified: trunk/Source/WebKit2/UIProcess/WebsiteData/WebsiteDataStore.cpp (184912 => 184913)


--- trunk/Source/WebKit2/UIProcess/WebsiteData/WebsiteDataStore.cpp	2015-05-27 18:53:49 UTC (rev 184912)
+++ trunk/Source/WebKit2/UIProcess/WebsiteData/WebsiteDataStore.cpp	2015-05-27 19:00:22 UTC (rev 184913)
@@ -837,9 +837,6 @@
     for (const auto& mediaKeyDirectory : WebCore::listDirectory(mediaKeysStorageDirectory, "*")) {
         auto mediaKeyFile = computeMediaKeyFile(mediaKeyDirectory);
 
-        if (!WebCore::fileExists(mediaKeyFile))
-            continue;
-
         time_t modificationTime;
         if (!WebCore::getFileModificationTime(mediaKeyFile, modificationTime))
             continue;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to