Skip to content

Commit 11d092a

Browse files
kblokMeir017
authored andcommitted
Roll Chromium to r650583 (#1095)
1 parent e98ebce commit 11d092a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/PuppeteerSharp/BrowserFetcher.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class BrowserFetcher
3737
/// <summary>
3838
/// Default Chromium revision.
3939
/// </summary>
40-
public const int DefaultRevision = 641577;
40+
public const int DefaultRevision = 650583;
4141

4242
/// <summary>
4343
/// Gets the downloads folder.
@@ -85,7 +85,7 @@ public BrowserFetcher(BrowserFetcherOptions options)
8585
Platform = options.Platform ?? GetCurrentPlatform();
8686
}
8787

88-
#region Public Methods
88+
#region Public Methods
8989

9090
/// <summary>
9191
/// The method initiates a HEAD request to check if the revision is available.
@@ -240,9 +240,9 @@ public static string GetExecutablePath(Platform platform, int revision, string f
240240
}
241241
}
242242

243-
#endregion
243+
#endregion
244244

245-
#region Private Methods
245+
#region Private Methods
246246

247247
internal static Platform GetCurrentPlatform()
248248
{
@@ -267,7 +267,7 @@ private string GetFolderPath(int revision)
267267
private void NativeExtractToDirectory(string zipPath, string folderPath)
268268
{
269269
var process = new Process();
270-
270+
271271
process.StartInfo.FileName = "unzip";
272272
process.StartInfo.Arguments = $"\"{zipPath}\" -d \"{folderPath}\"";
273273
process.Start();
@@ -312,6 +312,6 @@ private static string GetArchiveName(Platform platform, int revision)
312312
private static string GetDownloadURL(Platform platform, string host, int revision)
313313
=> string.Format(_downloadUrls[platform], host, revision, GetArchiveName(platform, revision));
314314

315-
#endregion
315+
#endregion
316316
}
317317
}

0 commit comments

Comments
 (0)