From c86bc0fa9feae8ae7cd7534a39ffd500a885f8e9 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 8 Jan 2019 12:55:40 -0800 Subject: [PATCH] feat(chromium): roll Chromium to r620317 (#3732) This roll includes: - https://crrev.com/619087 - DevTools: support interception for file: schema - https://crrev.com/616936 - Complete the screen capture color space plumbing This should allow us to switch to network service by default. Note: We now have to force a specific color space since https://crrev.com/616936 tries to pick the system one. --- lib/Launcher.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Launcher.js b/lib/Launcher.js index b4c729fa..2cb617d9 100644 --- a/lib/Launcher.js +++ b/lib/Launcher.js @@ -50,6 +50,7 @@ const DEFAULT_ARGS = [ '--disable-renderer-backgrounding', '--disable-sync', '--disable-translate', + '--force-color-profile=srgb', '--metrics-recording-only', '--no-first-run', '--safebrowsing-disable-auto-update', diff --git a/package.json b/package.json index fa986964..fa2906ad 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "node": ">=6.4.0" }, "puppeteer": { - "chromium_revision": "615489" + "chromium_revision": "620317" }, "scripts": { "unit": "node test/test.js",