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

Unified Diff: ash/wm/window_properties.h

Issue 10384212: fix property linkage warnings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/wm/visibility_controller.cc ('k') | ash/wm/window_properties.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_properties.h
diff --git a/ash/wm/window_properties.h b/ash/wm/window_properties.h
index a2edb8a23dcd1d44279b280438282994db569590..9f79a44c439289285e1aa83fe519e28a7efe2552 100644
--- a/ash/wm/window_properties.h
+++ b/ash/wm/window_properties.h
@@ -6,8 +6,10 @@
#define ASH_WM_WINDOW_PROPERTIES_H_
#pragma once
+#include "ash/wm/property_util.h"
#include "ash/wm/shadow_types.h"
#include "ui/aura/window.h"
+#include "ui/base/ui_base_types.h"
namespace ash {
namespace internal {
@@ -16,10 +18,26 @@ namespace internal {
// Alphabetical sort.
+// Property set on all windows whose child windows' visibility changes are
+// animated.
+extern const aura::WindowProperty<bool>* const
+ kChildWindowVisibilityChangesAnimatedKey;
+
+// Used to remember the show state before the window was minimized.
+extern const aura::WindowProperty<ui::WindowShowState>* const
+ kRestoreShowStateKey;
+
// A property key describing the drop shadow that should be displayed under the
// window. If unset, no shadow is displayed.
extern const aura::WindowProperty<ShadowType>* const kShadowTypeKey;
+extern const aura::WindowProperty<WindowPersistsAcrossAllWorkspacesType>* const
+ kWindowPersistsAcrossAllWorkspacesKey;
+
+// True if the window is controlled by the workspace manager.
+extern const aura::WindowProperty<bool>* const
+ kWindowTrackedByWorkspaceKey;
+
// Alphabetical sort.
} // namespace internal
« no previous file with comments | « ash/wm/visibility_controller.cc ('k') | ash/wm/window_properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698