diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-20 13:18:04 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-20 13:18:04 +0000 |
commit | e55b73458a2ab5e2963f7d720405edccd51cbc9e (patch) | |
tree | d582ac30f4c4c22a0fec8abb0aec14e17f4b0be9 /ash/wm/mru_window_tracker.h | |
parent | 9b0d66b6fcb4c34964a678c9068c4635b3b040e8 (diff) | |
download | chromium_src-e55b73458a2ab5e2963f7d720405edccd51cbc9e.zip chromium_src-e55b73458a2ab5e2963f7d720405edccd51cbc9e.tar.gz chromium_src-e55b73458a2ab5e2963f7d720405edccd51cbc9e.tar.bz2 |
Adding new always maximized mode
This is (at this time) not complete. There are some outstanding issues to be resolved marked with TODO(skuhne) which I will address before submitting. This is meant to be a "preview".
What does it do?
It tracks the creation of all browsers / V1 / V2 applications and maximizes them automatically. Non maximizable windows will get centered and a layer will be put behind them. Note that not all windows can be maximized. Dialogs, tray, .. will remain in their window state.
The missing things:
- Background cover layer
- Removing of the restore button from the caption (different CL)
- Suppression of restore / fullscreen request events of any of the tracked windows.
BUG=337563
TEST=unit tests
Review URL: https://codereview.chromium.org/167503002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@252211 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/wm/mru_window_tracker.h')
-rw-r--r-- | ash/wm/mru_window_tracker.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ash/wm/mru_window_tracker.h b/ash/wm/mru_window_tracker.h index 3f8740d..2c2a5ea 100644 --- a/ash/wm/mru_window_tracker.h +++ b/ash/wm/mru_window_tracker.h @@ -24,12 +24,6 @@ class ActivationClient; namespace ash { -// List of containers which contain windows that can be switched to. -ASH_EXPORT extern const int kSwitchableWindowContainerIds[]; - -// The number of elements in kSwitchableWindowContainerIds. -ASH_EXPORT extern const size_t kSwitchableWindowContainerIdsLength; - // Maintains a most recently used list of windows. This is used for window // cycling using Alt+Tab and overview mode. class ASH_EXPORT MruWindowTracker |