Start to update UrlRequestContextGetter

This commit is contained in:
Paul Betts 2016-03-07 22:58:25 -08:00
parent 18a75b5124
commit 6517dffa04
2 changed files with 13 additions and 1 deletions

View file

@ -59,6 +59,10 @@ class URLRequestContextGetter : public net::URLRequestContextGetter {
bool CanUseDefaultCredentials(const GURL& auth_origin) const override;
bool CanDelegate(const GURL& auth_origin) const override;
void SetDefaultWhitelist(
scoped_ptr<net::HttpAuthFilter> whitelist_default) override;
void SetDelegateWhitelist(
scoped_ptr<net::HttpAuthFilter> whitelist_delegate) override;
private:
URLRequestContextGetter::Delegate* delegate_;