⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 259768 in webkit


Ignore:
Timestamp:
Apr 8, 2020, 5:20:13 PM (6 years ago)
Author:
Kate Cheney
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):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r259765 r259768  
     12020-04-08  Kate Cheney  <katherine_cheney@apple.com>
     2
     3        Add curly braces after one line if statement for the case when we aren't using the internal SDK
     4        https://bugs.webkit.org/show_bug.cgi?id=210225
     5        <rdar://problem/61485209>
     6
     7        Reviewed by David Kilzer.
     8
     9        * UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:
     10        (WebKit::WebsiteDataStore::initializeAppBoundDomains):
     11
    1122020-04-08  Brady Eidson  <beidson@apple.com>
    213
  • trunk/Source/WebKit/UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm

    r259731 r259768  
    427427                    break;
    428428            }
    429             if (isInAppBrowserPrivacyEnabled)
     429            if (isInAppBrowserPrivacyEnabled) {
    430430                WEBSITE_DATA_STORE_ADDITIONS
     431            }
    431432            hasInitializedAppBoundDomains = true;
    432433        });
Note: See TracChangeset for help on using the changeset viewer.