Remove our plumbed methods
This commit is contained in:
parent
0d63eaa07b
commit
5168b44932
3 changed files with 0 additions and 10 deletions
|
@ -232,8 +232,4 @@ content::PermissionManager* BrowserContext::GetPermissionManager() {
|
|||
return permission_manager_.get();
|
||||
}
|
||||
|
||||
void BrowserContext::AllowNTLMCredentialsForAllDomains(bool should_allow) {
|
||||
url_request_getter_->AllowNTLMCredentialsForAllDomains(should_allow);
|
||||
}
|
||||
|
||||
} // namespace brightray
|
||||
|
|
|
@ -71,8 +71,6 @@ class BrowserContext : public base::RefCounted<BrowserContext>,
|
|||
void InitPrefs();
|
||||
PrefService* prefs() { return prefs_.get(); }
|
||||
|
||||
void AllowNTLMCredentialsForAllDomains(bool should_allow);
|
||||
|
||||
protected:
|
||||
BrowserContext(const std::string& partition, bool in_memory);
|
||||
~BrowserContext() override;
|
||||
|
|
|
@ -347,8 +347,4 @@ scoped_refptr<base::SingleThreadTaskRunner> URLRequestContextGetter::GetNetworkT
|
|||
return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO);
|
||||
}
|
||||
|
||||
void URLRequestContextGetter::AllowNTLMCredentialsForAllDomains(bool should_allow) {
|
||||
url_sec_mgr_->AllowNTLMCredentialsForAllDomains(should_allow);
|
||||
}
|
||||
|
||||
} // namespace brightray
|
||||
|
|
Loading…
Reference in a new issue