virutal should not be used together with override
This commit is contained in:
parent
d49e240fd4
commit
948e7c4055
2 changed files with 3 additions and 3 deletions
|
@ -66,9 +66,8 @@ class NetworkDelegate : public net::NetworkDelegate {
|
|||
bool OnCanEnablePrivacyMode(
|
||||
const GURL& url,
|
||||
const GURL& first_party_for_cookies) const override;
|
||||
|
||||
virtual bool OnAreStrictSecureCookiesEnabled() const override;
|
||||
virtual bool OnAreExperimentalCookieFeaturesEnabled() const override;
|
||||
bool OnAreStrictSecureCookiesEnabled() const override;
|
||||
bool OnAreExperimentalCookieFeaturesEnabled() const override;
|
||||
bool OnCancelURLRequestWithPolicyViolatingReferrerHeader(
|
||||
const net::URLRequest& request,
|
||||
const GURL& target_url,
|
||||
|
|
|
@ -53,6 +53,7 @@ int PermissionManager::RequestPermissions(
|
|||
callback.Run(permissionStatuses);
|
||||
return kNoPendingOperation;
|
||||
}
|
||||
|
||||
void PermissionManager::CancelPermissionRequest(int request_id) {
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue