Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: ui/aura/client/aura_constants.cc

Issue 11085053: Improving window auto management between workspaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved the entire window (auto) management Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/aura/client/aura_constants.h" 5 #include "ui/aura/client/aura_constants.h"
6 6
7 #include "ui/aura/window_property.h" 7 #include "ui/aura/window_property.h"
8 #include "ui/gfx/rect.h" 8 #include "ui/gfx/rect.h"
9 9
10 DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(AURA_EXPORT, bool) 10 DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(AURA_EXPORT, bool)
(...skipping 10 matching lines...) Expand all
21 DEFINE_WINDOW_PROPERTY_KEY(bool, kAlwaysOnTopKey, false); 21 DEFINE_WINDOW_PROPERTY_KEY(bool, kAlwaysOnTopKey, false);
22 DEFINE_WINDOW_PROPERTY_KEY(bool, kAnimationsDisabledKey, false); 22 DEFINE_WINDOW_PROPERTY_KEY(bool, kAnimationsDisabledKey, false);
23 DEFINE_WINDOW_PROPERTY_KEY(bool, kCanMaximizeKey, false); 23 DEFINE_WINDOW_PROPERTY_KEY(bool, kCanMaximizeKey, false);
24 DEFINE_WINDOW_PROPERTY_KEY(bool, kConstrainedWindowKey, false); 24 DEFINE_WINDOW_PROPERTY_KEY(bool, kConstrainedWindowKey, false);
25 DEFINE_WINDOW_PROPERTY_KEY(bool, kDrawAttentionKey, false); 25 DEFINE_WINDOW_PROPERTY_KEY(bool, kDrawAttentionKey, false);
26 DEFINE_WINDOW_PROPERTY_KEY(ui::ModalType, kModalKey, ui::MODAL_TYPE_NONE); 26 DEFINE_WINDOW_PROPERTY_KEY(ui::ModalType, kModalKey, ui::MODAL_TYPE_NONE);
27 // gfx::Rect object for RestoreBoundsKey property is owned by the window 27 // gfx::Rect object for RestoreBoundsKey property is owned by the window
28 // and will be freed automatically. 28 // and will be freed automatically.
29 DEFINE_OWNED_WINDOW_PROPERTY_KEY(gfx::Rect, kRestoreBoundsKey, NULL); 29 DEFINE_OWNED_WINDOW_PROPERTY_KEY(gfx::Rect, kRestoreBoundsKey, NULL);
30 DEFINE_WINDOW_PROPERTY_KEY(ui::InputMethod*, kRootWindowInputMethodKey, NULL); 30 DEFINE_WINDOW_PROPERTY_KEY(ui::InputMethod*, kRootWindowInputMethodKey, NULL);
31 DEFINE_WINDOW_PROPERTY_KEY(bool, kUserChangedWindowPositionOrSizeKey, false);
31 DEFINE_WINDOW_PROPERTY_KEY( 32 DEFINE_WINDOW_PROPERTY_KEY(
32 ui::WindowShowState, kShowStateKey, ui::SHOW_STATE_DEFAULT); 33 ui::WindowShowState, kShowStateKey, ui::SHOW_STATE_DEFAULT);
34 DEFINE_WINDOW_PROPERTY_KEY(bool, kWindowPositionManageableKey, false);
33 35
34 } // namespace client 36 } // namespace client
35 } // namespace aura 37 } // namespace aura
OLDNEW
« ui/aura/client/aura_constants.h ('K') | « ui/aura/client/aura_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698