From 605df416e4255990d7fe1c5b4ae5f8c5597accb6 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Sat, 2 Mar 2019 02:20:55 -0800 Subject: [PATCH] feat(chromium): roll Chromium to r637110 This roll includes: - https://crrev.com/636867 - devtools: bump max number of devtools isolated worlds Fix #4011 --- lib/Launcher.js | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Launcher.js b/lib/Launcher.js index de612c7905276..b7631706ad601 100644 --- a/lib/Launcher.js +++ b/lib/Launcher.js @@ -37,7 +37,8 @@ const CHROME_PROFILE_PATH = path.join(os.tmpdir(), 'puppeteer_dev_profile-'); const DEFAULT_ARGS = [ '--disable-background-networking', '--enable-features=NetworkService,NetworkServiceInProcess', - '--disable-background-timer-throttling', + // BlinkGenPropertyTrees disabled due to crbug.com/937609 + '--disable-background-timer-throttling,BlinkGenPropertyTrees', '--disable-backgrounding-occluded-windows', '--disable-breakpad', '--disable-client-side-phishing-detection', diff --git a/package.json b/package.json index 5b6cf3ee192fe..40b0480e23925 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "node": ">=6.4.0" }, "puppeteer": { - "chromium_revision": "630727" + "chromium_revision": "637110" }, "scripts": { "unit": "node test/test.js",