diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-01 21:39:51 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-01 21:39:51 +0000 |
commit | 5fce874ee023d58dd3bee1f60dd6f5819c83cd18 (patch) | |
tree | 4088970bfadb01b63f6062118be804e8b0ae07a6 /ash/ash_constants.cc | |
parent | ae792e786bf6a1225aeec5a08fbc28d1bd588b1e (diff) | |
download | chromium_src-5fce874ee023d58dd3bee1f60dd6f5819c83cd18.zip chromium_src-5fce874ee023d58dd3bee1f60dd6f5819c83cd18.tar.gz chromium_src-5fce874ee023d58dd3bee1f60dd6f5819c83cd18.tar.bz2 |
Fixing problems with constrained windows (i.e. print preview)
BUG=135103, 135096, 135116
Review URL: https://chromiumcodereview.appspot.com/10826085
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149497 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/ash_constants.cc')
-rw-r--r-- | ash/ash_constants.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ash/ash_constants.cc b/ash/ash_constants.cc new file mode 100644 index 0000000..ba07082 --- /dev/null +++ b/ash/ash_constants.cc @@ -0,0 +1,15 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "ash/ash_constants.h" + +#include "ui/aura/window_property.h" + +DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(ASH_EXPORT, bool) + +namespace ash { + +DEFINE_WINDOW_PROPERTY_KEY(bool, kConstrainedWindowKey, false); + +} // namespace ash |