> I'm having trouble finding where the pages or the code that generates them are in the chromium source code.
To find the answer to your question, let's choose one of the less well known chrome:// pages and search for where it is referenced in the code base.
- chrome://media-internals
- chrome://net-internals
- chrome://memory-internals
- chrome://web-app-internals
- chrome://process-internals
We might then search for one of these in the codebase, and use git blame to find the commit where they were added to the codebase.
For example, a search for web-app-internals leads to
Now we have a starting point for exploration of the
Settings implementation.