Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(807)

Unified Diff: third_party/WebKit/Source/devtools/scripts/chrome_debug_launcher/launch_chrome.js

Issue 2469943002: DevTools: bring hosted mode up-to-date with the new --custom-devtools-frontend (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));
« no previous file with comments | « third_party/WebKit/Source/devtools/readme.md ('k') | third_party/WebKit/Source/devtools/scripts/hosted_mode/server.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698