| Index: third_party/WebKit/Source/devtools/scripts/chrome_debug_launcher/launch_chrome.js
|
| diff --git a/third_party/WebKit/Source/devtools/scripts/chrome_debug_launcher/launch_chrome.js b/third_party/WebKit/Source/devtools/scripts/chrome_debug_launcher/launch_chrome.js
|
| index ca2a0fddce19a33741bf379c56eb31d5a66d3d5e..b163451f21b4546d6e82a7817ea662df298c1ebb 100644
|
| --- a/third_party/WebKit/Source/devtools/scripts/chrome_debug_launcher/launch_chrome.js
|
| +++ b/third_party/WebKit/Source/devtools/scripts/chrome_debug_launcher/launch_chrome.js
|
| @@ -12,8 +12,9 @@ var serverPort = parseInt(process.env.PORT, 10) || 8090;
|
|
|
| var chromeArgs = [
|
| `--remote-debugging-port=${remoteDebuggingPort}`,
|
| + `--custom-devtools-frontend=http://localhost:${serverPort}/front_end/`,
|
| `--no-first-run`,
|
| - `http://localhost:${remoteDebuggingPort}#http://localhost:${serverPort}/front_end/inspector.html?experiments=true`,
|
| + `http://localhost:${remoteDebuggingPort}#custom=true&experiments=true`,
|
| `https://devtools.chrome.com`
|
| ].concat(process.argv.slice(2));
|
|
|
|
|