Title: [223269] trunk/Source/WebKit
Revision
223269
Author
[email protected]
Date
2017-10-12 18:04:35 -0700 (Thu, 12 Oct 2017)

Log Message

Increment ContentRuleListStore::CurrentContentRuleListFileVersion
https://bugs.webkit.org/show_bug.cgi?id=178246
<rdar://problem/34890057>

Reviewed by Tim Horton.

* UIProcess/API/APIContentRuleListStore.h:
Things are crashing.  Something isn't binary reverse compatible.
Probably something related to r222602.
This is why we have a version number to update.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (223268 => 223269)


--- trunk/Source/WebKit/ChangeLog	2017-10-13 00:47:51 UTC (rev 223268)
+++ trunk/Source/WebKit/ChangeLog	2017-10-13 01:04:35 UTC (rev 223269)
@@ -1,5 +1,18 @@
 2017-10-12  Alex Christensen  <[email protected]>
 
+        Increment ContentRuleListStore::CurrentContentRuleListFileVersion
+        https://bugs.webkit.org/show_bug.cgi?id=178246
+        <rdar://problem/34890057>
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/API/APIContentRuleListStore.h:
+        Things are crashing.  Something isn't binary reverse compatible.
+        Probably something related to r222602.
+        This is why we have a version number to update.
+
+2017-10-12  Alex Christensen  <[email protected]>
+
         Expose some of WKView's WebViewImpl accessors through WKWebViewPrivate
         https://bugs.webkit.org/show_bug.cgi?id=178240
         <rdar://problem/34962720>

Modified: trunk/Source/WebKit/UIProcess/API/APIContentRuleListStore.h (223268 => 223269)


--- trunk/Source/WebKit/UIProcess/API/APIContentRuleListStore.h	2017-10-13 00:47:51 UTC (rev 223268)
+++ trunk/Source/WebKit/UIProcess/API/APIContentRuleListStore.h	2017-10-13 01:04:35 UTC (rev 223269)
@@ -52,7 +52,7 @@
     // to prevent crashing while loading old data.
     // Also update ContentRuleListStore::getContentRuleListSource to be able to find the original JSON
     // source from old versions.
-    const static uint32_t CurrentContentRuleListFileVersion = 9;
+    const static uint32_t CurrentContentRuleListFileVersion = 10;
 
     static ContentRuleListStore& defaultStore(bool legacyFilename);
     static Ref<ContentRuleListStore> storeWithPath(const WTF::String& storePath, bool legacyFilename);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to