Index: ash/ash_constants.cc |
diff --git a/ash/wm/window_frame.cc b/ash/ash_constants.cc |
similarity index 56% |
copy from ash/wm/window_frame.cc |
copy to ash/ash_constants.cc |
index 1cd2f4cefa5b33047e0f4154a0fd606ac6e86f83..eedd11dc8d397c61eb740eef57b5e5ae9c0c4408 100644 |
--- a/ash/wm/window_frame.cc |
+++ b/ash/ash_constants.cc |
@@ -2,12 +2,16 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "ash/wm/window_frame.h" |
+#include "ash/ash_constants.h" |
#include "ui/aura/window_property.h" |
-DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(ASH_EXPORT, ash::WindowFrame*); |
+DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(ASH_EXPORT, bool) |
namespace ash { |
-DEFINE_WINDOW_PROPERTY_KEY(WindowFrame*, kWindowFrameKey, NULL); |
+namespace client { |
Ben Goodger (Google)
2012/08/01 19:09:40
no client namespace. (namespaces are supposed to f
Mr4D (OOO till 08-26)
2012/08/01 20:02:28
Ohhh. I didn't know that. Thanks!
Done.
|
+ |
+DEFINE_WINDOW_PROPERTY_KEY(bool, kConstrainedWindowKey, false); |
+ |
+} // namespace client |
} // namespace ash |