browser(webkit): fix mac compilation (#3598)
This commit is contained in:
parent
2b3a1ae9c6
commit
4f1f972143
|
|
@ -1,2 +1,2 @@
|
||||||
1328
|
1329
|
||||||
Changed: yurys@chromium.org Fri Aug 21 19:21:58 PDT 2020
|
Changed: yurys@chromium.org Mon Aug 24 08:55:27 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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue