window_properties.cc 635 B

123456789101112131415161718192021
  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
  3. // found in the LICENSE file.
  4. #include "ash/wm/window_properties.h"
  5. #include "ash/wm/window_state.h"
  6. DEFINE_EXPORTED_UI_CLASS_PROPERTY_TYPE(ASH_EXPORT, ash::WindowState*)
  7. namespace ash {
  8. DEFINE_OWNED_UI_CLASS_PROPERTY_KEY(std::string, kWebAuthnRequestId, nullptr)
  9. DEFINE_UI_CLASS_PROPERTY_KEY(bool, kHideDuringWindowDragging, false)
  10. DEFINE_UI_CLASS_PROPERTY_KEY(bool, kLockedToRootKey, false)
  11. DEFINE_OWNED_UI_CLASS_PROPERTY_KEY(WindowState, kWindowStateKey, nullptr)
  12. } // namespace ash