Hi
Is it possible to run chromium on Linux in frame-less and border-less mode as in kiosk mode but not in full screen mode?
Basically, I just need to start the browser from the command line, specify URL to show, specify window size and position and to ensure, that no frame( with tabs, search bar etc) or border( with close, minimize and maximize buttons) are visible.
If there are no such command line option combination exist today, I am willing to make changes in the source code and rebuild for my needs, just don;t know where to start.
I saw something promising in browser.cc:
// Top container holds tab strip and toolbar and lives at the front of the
// view hierarchy.
top_container_ = new TopContainerView(this);
AddChildView(top_container_);
And when I tried to comment out the AddChildMethod and rebuilt the browser crashes.
Thanks for any help!