| Index: third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js b/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
|
| index 9b2805ae1204373ec6af0f6a1d4c241d26ca70a2..1bea7702ad4e362dc36dd8bd4b13037c282d4dd4 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/CookieParser.js
|
| @@ -260,9 +260,9 @@ WebInspector.Cookie.prototype = {
|
| /**
|
| * @return {boolean}
|
| */
|
| - firstPartyOnly: function ()
|
| + sameSite: function ()
|
| {
|
| - return "first-party-only" in this._attributes;
|
| + return "samesite" in this._attributes;
|
| },
|
|
|
| /**
|
| @@ -428,8 +428,8 @@ WebInspector.Cookies._parseProtocolCookie = function(target, protocolCookie)
|
| cookie.addAttribute("httpOnly");
|
| if (protocolCookie["secure"])
|
| cookie.addAttribute("secure");
|
| - if (protocolCookie["firstPartyOnly"])
|
| - cookie.addAttribute("first-party-only");
|
| + if (protocolCookie["sameSite"])
|
| + cookie.addAttribute("sameSite");
|
| cookie.setSize(protocolCookie["size"]);
|
| return cookie;
|
| }
|
|
|