Hi,
I'm trying to do some work on OOBE screens, and being able to do remote debugging would be a huge help.
I've added relevant flags to /etc/chromeos_dev.conf:
--show-login-dev-overlay
--enable-ui-devtools=9222
--remote-debugging-port=9223
and ran `restart ui`. `ps aux | grep chrome` shows that Chrome is in fact started with the flags.
My device is SSH-able at 100.127.30.93, but whenever I visit chrome-devtools://devtools/bundled/inspector.html?ws=100.127.30.93:9223/0 I get disconnected shortly after (timeout?). `telnet 100.127.30.93` also shows that the connection is refused. I thought this might be firewall related so I tried port-forwarding it over SSH via `-L 9223:localhost:9223` and pointing devtools to localhost, and now when I connect I get the following message in /var/log/chrome/chrome:
[19772:19772:0625/163436.189633:ERROR:devtools_server.cc(157)]: Not implemented reached in virtual void ui_devtools::UiDevToolsServer::OnConnect(int)
I'm hoping there's something obvious I'm missing to getting devtools to work, but I've run out of ideas.