mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Fix GURL coonstructor from webkit string error
This commit is contained in:
committed by
Cheng Zhao
parent
48e62ac0b5
commit
22863b9f31
@@ -137,7 +137,8 @@ void GetCookiesOnIO(scoped_refptr<net::URLRequestContextGetter> getter,
|
||||
if (url.empty())
|
||||
GetCookieStore(getter)->GetAllCookiesAsync(filtered_callback);
|
||||
else
|
||||
GetCookieStore(getter)->GetAllCookiesForURLAsync(GURL(url), filtered_callback);
|
||||
GetCookieStore(getter)->GetAllCookiesForURLAsync(GURL(url),
|
||||
filtered_callback);
|
||||
}
|
||||
|
||||
// Removes cookie with |url| and |name| in IO thread.
|
||||
|
||||
Reference in New Issue
Block a user