-
-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Roll Chromium to r654752 * Roll Chromium to r656675
- Loading branch information
Showing
6 changed files
with
42 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using Newtonsoft.Json; | ||
using PuppeteerSharp.Helpers.Json; | ||
|
||
namespace PuppeteerSharp | ||
{ | ||
/// <summary> | ||
/// SameSite values in cookies | ||
/// </summary> | ||
[JsonConverter(typeof(FlexibleStringEnumConverter), None)] | ||
public enum SameSite | ||
{ | ||
/// <summary> | ||
/// None | ||
/// </summary> | ||
None, | ||
/// <summary> | ||
/// Strict | ||
/// </summary> | ||
Strict, | ||
/// <summary> | ||
/// Lax | ||
/// </summary> | ||
Lax, | ||
/// <summary> | ||
/// Extended | ||
/// </summary> | ||
Extended | ||
} | ||
} |