browser(webkit): explicitly track pages reported for context (#3574)
This commit is contained in:
parent
6fe1cd9812
commit
93d8839947
|
|
@ -1,2 +1,2 @@
|
||||||
1327
|
1328
|
||||||
Changed: clopez@igalia.com Fri Aug 21 14:40:43 CEST 2020
|
Changed: yurys@chromium.org Fri Aug 21 19:21:58 PDT 2020
|
||||||
|
|
|
||||||
|
|
@ -333,9 +333,9 @@ const NSActivityOptions ActivityOptions =
|
||||||
if (!proxyBypassList || ![proxyBypassList length])
|
if (!proxyBypassList || ![proxyBypassList length])
|
||||||
proxyBypassList = _proxyBypassList;
|
proxyBypassList = _proxyBypassList;
|
||||||
[dataStoreConfiguration setProxyConfiguration:[self proxyConfiguration:proxyServer WithBypassList:proxyBypassList]];
|
[dataStoreConfiguration setProxyConfiguration:[self proxyConfiguration:proxyServer WithBypassList:proxyBypassList]];
|
||||||
browserContext.dataStore = [[WKWebsiteDataStore alloc] _initWithConfiguration:dataStoreConfiguration];
|
browserContext->dataStore = [[WKWebsiteDataStore alloc] _initWithConfiguration:dataStoreConfiguration];
|
||||||
browserContext.processPool = [[[WKProcessPool alloc] _initWithConfiguration:processConfiguration] autorelease];
|
browserContext->processPool = [[[WKProcessPool alloc] _initWithConfiguration:processConfiguration] autorelease];
|
||||||
[browserContext.processPool _setDownloadDelegate:self];
|
[browserContext->processPool _setDownloadDelegate:self];
|
||||||
[_browserContexts addObject:browserContext];
|
[_browserContexts addObject:browserContext];
|
||||||
return browserContext;
|
return browserContext;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue