Put definetion of GetCookieableSchemes in .cc to match other methods
This commit is contained in:
parent
5ecefd298a
commit
900225bb03
2 changed files with 5 additions and 3 deletions
|
@ -103,6 +103,10 @@ net::SSLConfigService* URLRequestContextGetter::Delegate::CreateSSLConfigService
|
||||||
return new net::SSLConfigServiceDefaults;
|
return new net::SSLConfigServiceDefaults;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<std::string> URLRequestContextGetter::Delegate::GetCookieableSchemes() {
|
||||||
|
return { "http", "https", "ws", "wss" };
|
||||||
|
}
|
||||||
|
|
||||||
URLRequestContextGetter::URLRequestContextGetter(
|
URLRequestContextGetter::URLRequestContextGetter(
|
||||||
Delegate* delegate,
|
Delegate* delegate,
|
||||||
DevToolsNetworkControllerHandle* handle,
|
DevToolsNetworkControllerHandle* handle,
|
||||||
|
|
|
@ -47,9 +47,7 @@ class URLRequestContextGetter : public net::URLRequestContextGetter {
|
||||||
const base::FilePath& base_path);
|
const base::FilePath& base_path);
|
||||||
virtual std::unique_ptr<net::CertVerifier> CreateCertVerifier();
|
virtual std::unique_ptr<net::CertVerifier> CreateCertVerifier();
|
||||||
virtual net::SSLConfigService* CreateSSLConfigService();
|
virtual net::SSLConfigService* CreateSSLConfigService();
|
||||||
virtual std::vector<std::string> GetCookieableSchemes() {
|
virtual std::vector<std::string> GetCookieableSchemes();
|
||||||
return std::vector<std::string>();
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
URLRequestContextGetter(
|
URLRequestContextGetter(
|
||||||
|
|
Loading…
Reference in a new issue