0
Files
src/extensions/shell
Emily Andrews d15fd76ecb Change RenderProcessHost::GetID to RenderProcessHost::GetDeprecatedID
This change bulk changes RenderProcessHost::GetID to
RenderProcessHost::GetDeprecatedID to support the transition to a
strongly typed ChildProcessId.

Bug: 379869738
Change-Id: Ib0c991536486ef29702ea166cdcf12ea68ed70ee
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6065543
Reviewed-by: Arthur Sonzogni <arthursonzogni@chromium.org>
Owners-Override: Arthur Sonzogni <arthursonzogni@chromium.org>
Reviewed-by: Avi Drissman <avi@chromium.org>
Reviewed-by: Alex Moshchuk <alexmos@chromium.org>
Commit-Queue: Emily Andrews <emiled@microsoft.com>
Cr-Commit-Position: refs/heads/main@{#1394500}
2024-12-10 20:41:54 +00:00
..
2024-10-29 23:02:38 +00:00
2024-10-29 23:02:38 +00:00
2024-10-29 23:02:38 +00:00
2024-10-29 23:02:38 +00:00

# Introduction

app_shell is an experimental project to build a minimal environment like
content_shell.

The goal is to be able to run a v2 app and supply most of the chrome.* extension
APIs without running the rest of Chrome.

app_shell is only officially supported on Chrome OS.

# How to run

$ app_shell --load-apps=/path/to/extension

# For example, you can try the calculator app:

$ app_shell --load-apps=chrome/test/data/extensions/calculator_app/app/

# To load multiple apps, specify them in a comma separated list.  The first app
# will be launched:

$ app_shell --load-apps=/path/to/extension1,/path/to/extension2