Changeset 240308 in webkit


Ignore:
Timestamp:
Jan 22, 2019 4:32:24 PM (5 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed, fix -Wunused-but-set-variable warning
https://bugs.webkit.org/show_bug.cgi?id=193660
<rdar://problem/47433602>

  • UIProcess/WebsiteData/WebsiteDataStore.cpp:

(WebKit::WebsiteDataStore::removeData):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r240306 r240308  
     12019-01-22  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed, fix -Wunused-but-set-variable warning
     4        https://bugs.webkit.org/show_bug.cgi?id=193660
     5        <rdar://problem/47433602>
     6
     7        * UIProcess/WebsiteData/WebsiteDataStore.cpp:
     8        (WebKit::WebsiteDataStore::removeData):
     9
    1102019-01-22  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp

    r240247 r240308  
    758758#endif
    759759
     760#if ENABLE(RESOURCE_LOAD_STATISTICS)
    760761    bool didNotifyNetworkProcessToDeleteWebsiteData = false;
     762#endif
    761763    auto networkProcessAccessType = computeNetworkProcessAccessTypeForDataRemoval(dataTypes, !isPersistent());
    762764    if (networkProcessAccessType != ProcessAccessType::None) {
     
    780782                callbackAggregator->removePendingCallback();
    781783            });
     784#if ENABLE(RESOURCE_LOAD_STATISTICS)
    782785            didNotifyNetworkProcessToDeleteWebsiteData = true;
     786#endif
    783787        }
    784788    }
Note: See TracChangeset for help on using the changeset viewer.