Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Commit

Permalink
fix build error from last chromium .81 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bridiver committed Sep 4, 2018
1 parent 811ba76 commit c8ec091
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions vendor/brightray/browser/network_delegate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,13 @@ NetworkDelegate::AuthRequiredResponse NetworkDelegate::OnAuthRequired(
}

bool NetworkDelegate::OnCanGetCookies(const net::URLRequest& request,
const net::CookieList& cookie_list,
bool allow_from_caller) {
const net::CookieList& cookie_list) {
return true;
}

bool NetworkDelegate::OnCanSetCookie(const net::URLRequest& request,
const net::CanonicalCookie& cookie,
net::CookieOptions* options,
bool allow_from_caller) {
net::CookieOptions* options) {
return true;
}

Expand Down
6 changes: 2 additions & 4 deletions vendor/brightray/browser/network_delegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,10 @@ class NetworkDelegate : public net::NetworkDelegate {
AuthCallback callback,
net::AuthCredentials* credentials) override;
bool OnCanGetCookies(const net::URLRequest& request,
const net::CookieList& cookie_list,
bool allow_from_caller) override;
const net::CookieList& cookie_list) override;
bool OnCanSetCookie(const net::URLRequest& request,
const net::CanonicalCookie& cookie,
net::CookieOptions* options,
bool allow_from_caller) override;
net::CookieOptions* options) override;
bool OnCanAccessFile(const net::URLRequest& request,
const base::FilePath& original_path,
const base::FilePath& path) const override;
Expand Down

0 comments on commit c8ec091

Please sign in to comment.