diff options
author | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-28 07:29:03 +0000 |
---|---|---|
committer | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-28 07:29:03 +0000 |
commit | 0f6f6a4bb39c2c32eb83daddecba381db2c3de0d (patch) | |
tree | 078f26fe8450e34cef50ae563aa1def8ccac178d /ash/shell/toplevel_window.h | |
parent | 0ff79a90a4550f0f67bd80fa9bbc5bac88d57942 (diff) | |
download | chromium_src-0f6f6a4bb39c2c32eb83daddecba381db2c3de0d.zip chromium_src-0f6f6a4bb39c2c32eb83daddecba381db2c3de0d.tar.gz chromium_src-0f6f6a4bb39c2c32eb83daddecba381db2c3de0d.tar.bz2 |
Removes PERSIST_ACROSS_ALL_WORKSPACES property.
This was added to persist a window (like task manager or v2 app)
across all workspaces like maximized / fullscreen. However, now
all of those windows are in the same desktop workspace, the role
of this property is over.
We still keeps multiple workspace code and switching code, that's
(still unclear but probably) used in multi-profile in the future.
In that situation we do not have a window which should persist
across the workspaces.
This CL also removes a test case because the test scenario doesn't
make sense if PERSIST_ACROSS_ALL_WORKSPACES property doesn't exist.
BUG=264396
R=sky@chromium.org, jamescook@chromium.org
TEST=old tests still succeed
Review URL: https://chromiumcodereview.appspot.com/20221002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214082 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell/toplevel_window.h')
-rw-r--r-- | ash/shell/toplevel_window.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ash/shell/toplevel_window.h b/ash/shell/toplevel_window.h index 22c23d0..4e4c1a9 100644 --- a/ash/shell/toplevel_window.h +++ b/ash/shell/toplevel_window.h @@ -17,7 +17,6 @@ class ToplevelWindow : public views::WidgetDelegateView { bool can_resize; bool can_maximize; - bool persist_across_all_workspaces; }; static void CreateToplevelWindow(const CreateParams& params); |