| Index: net/cookies/cookie_monster.cc
|
| diff --git a/net/cookies/cookie_monster.cc b/net/cookies/cookie_monster.cc
|
| index 2292f8c25a7786127d70f1b133822d23207df4e3..e74fdba589ea8ee04524d0bf039ca1329592f830 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;
|
| @@ -1204,7 +1205,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);
|
| }
|
|
|