| Index: net/cookies/cookie_monster.cc
|
| diff --git a/net/cookies/cookie_monster.cc b/net/cookies/cookie_monster.cc
|
| index 0f8ba79d515d61fb15958769013eedc3dbaa4623..037d1b791d56d4f9bfcbbd413661341cf3d0c666 100644
|
| --- a/net/cookies/cookie_monster.cc
|
| +++ b/net/cookies/cookie_monster.cc
|
| @@ -65,6 +65,7 @@
|
| #include "net/cookies/canonical_cookie.h"
|
| #include "net/cookies/cookie_util.h"
|
| #include "net/cookies/parsed_cookie.h"
|
| +#include "url/origin.h"
|
|
|
| using base::Time;
|
| using base::TimeDelta;
|
| @@ -1218,7 +1219,7 @@ CookieList CookieMonster::GetAllCookiesForURLWithOptions(
|
| CookieList CookieMonster::GetAllCookiesForURL(const GURL& url) {
|
| CookieOptions options;
|
| options.set_include_httponly();
|
| - options.set_first_party_url(url);
|
| + options.set_first_party(url::Origin(url));
|
|
|
| return GetAllCookiesForURLWithOptions(url, options);
|
| }
|
|
|