0
Files
src/ash
chinsenj 10c90140f1 full_restore: Restore windows that are out-of-bounds properly.
Currently, if a user has a window that is slightly out-of-bounds, upon
restoration it the restored window will be moved into the work area
such that it's fully contained. The ideal behavior is that out-of-bounds
windows are restored to their previous bounds. Additionally, if the
window would be placed fully out-of-bounds, we should ensure that a
portion of the window is within the work area.

This CL implements the ideal behavior by restoring out-of-bounds
windows with the FullRestoreController, ensuring these windows are at
least partially visible.

Test: added
Bug: 1208927
Change-Id: If43415c6abe39017183d0e11e81b60ca4e4d0ba1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2911344
Commit-Queue: Jeremy Chinsen <chinsenj@chromium.org>
Reviewed-by: Sammie Quon <sammiequon@chromium.org>
Cr-Commit-Position: refs/heads/master@{#886548}
2021-05-26 01:29:43 +00:00
..
2021-05-15 01:29:52 +00:00
2021-05-13 01:21:32 +00:00
2021-05-14 21:58:47 +00:00
2021-05-14 21:58:47 +00:00
2021-04-29 21:11:51 +00:00

Ash

Ash is the "Aura Shell", the window manager and system UI for Chrome OS. Ash uses the views UI toolkit (e.g. views::View, views::Widget, etc.) backed by the aura native widget and layer implementations.

Ash sits below chrome in the dependency graph (i.e. it cannot depend on code in //chrome). Code outside of Ash should depend solely on Ash's public interface, which is in ash/public.

Tests

Tests should be added to the ash_unittests target.

Tests can bring up most of the ash UI and simulate a login session by deriving from AshTestBase. This is often needed to test code that depends on ash::Shell and the controllers it owns.

Test support code (TestFooDelegate, FooControllerTestApi, etc.) lives in the same directory as the class under test (e.g. //ash/foo rather than //ash/test). Test code uses namespace ash; there is no special "test" namespace.

Prefs

Ash supports both per-user prefs and device-wide prefs. These are called "profile prefs" and "local state" to match the naming conventions in chrome. Ash also supports "signin screen" prefs, bound to a special profile that allows users to toggle features like spoken feedback at the login screen.

Pref names are in //ash/public/cpp so that code in chrome can also use the names. Prefs are registered in the classes that use them because those classes have the best knowledge of default values.

Historical notes

Ash shipped on Windows for a couple years to support Windows 8 Metro mode. Windows support was removed in 2016.

The mash (some times called mus-ash or mustash) project was an effort to move ash into its own process and the browser in its own process. Communication between the two processes was done over mojo. Windowing was done using the window-service (some times called mus), which ran with Ash. Many of the mojo interfaces have been converted to pure virtual interfaces, with the implementation in ash. The mash project was stopped around 4/2019.