Title: [259768] trunk/Source/WebKit
Revision
259768
Author
[email protected]
Date
2020-04-08 17:20:13 -0700 (Wed, 08 Apr 2020)

Log Message

Add curly braces after one line if statement for the case when we aren't using the internal SDK
https://bugs.webkit.org/show_bug.cgi?id=210225
<rdar://problem/61485209>

Reviewed by David Kilzer.

* UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:
(WebKit::WebsiteDataStore::initializeAppBoundDomains):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (259767 => 259768)


--- trunk/Source/WebKit/ChangeLog	2020-04-09 00:06:00 UTC (rev 259767)
+++ trunk/Source/WebKit/ChangeLog	2020-04-09 00:20:13 UTC (rev 259768)
@@ -1,3 +1,14 @@
+2020-04-08  Kate Cheney  <[email protected]>
+
+        Add curly braces after one line if statement for the case when we aren't using the internal SDK
+        https://bugs.webkit.org/show_bug.cgi?id=210225
+        <rdar://problem/61485209>
+
+        Reviewed by David Kilzer.
+
+        * UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:
+        (WebKit::WebsiteDataStore::initializeAppBoundDomains):
+
 2020-04-08  Brady Eidson  <[email protected]>
 
         Handle [PDFDocument initWithProvider:] returning nil

Modified: trunk/Source/WebKit/UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm (259767 => 259768)


--- trunk/Source/WebKit/UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm	2020-04-09 00:06:00 UTC (rev 259767)
+++ trunk/Source/WebKit/UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm	2020-04-09 00:20:13 UTC (rev 259768)
@@ -426,8 +426,9 @@
                 if (appBoundDomains().size() >= maxAppBoundDomainCount)
                     break;
             }
-            if (isInAppBrowserPrivacyEnabled)
+            if (isInAppBrowserPrivacyEnabled) {
                 WEBSITE_DATA_STORE_ADDITIONS
+            }
             hasInitializedAppBoundDomains = true;
         });
     });
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to