| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "ash/public/cpp/window_properties.h" | 5 #include "ash/public/cpp/window_properties.h" |
| 6 | 6 |
| 7 #include "ash/public/interfaces/window_pin_type.mojom.h" |
| 8 |
| 9 DECLARE_EXPORTED_UI_CLASS_PROPERTY_TYPE(ASH_PUBLIC_EXPORT, |
| 10 ash::mojom::WindowPinType) |
| 11 |
| 7 namespace ash { | 12 namespace ash { |
| 8 | 13 |
| 9 DEFINE_UI_CLASS_PROPERTY_KEY(bool, kPanelAttachedKey, true); | 14 DEFINE_UI_CLASS_PROPERTY_KEY(bool, kPanelAttachedKey, true); |
| 10 | |
| 11 DEFINE_UI_CLASS_PROPERTY_KEY(int32_t, kShelfItemTypeKey, TYPE_UNDEFINED); | 15 DEFINE_UI_CLASS_PROPERTY_KEY(int32_t, kShelfItemTypeKey, TYPE_UNDEFINED); |
| 16 DEFINE_UI_CLASS_PROPERTY_KEY(ash::mojom::WindowPinType, |
| 17 kWindowPinTypeKey, |
| 18 ash::mojom::WindowPinType::NONE); |
| 12 | 19 |
| 13 } // namespace ash | 20 } // namespace ash |
| OLD | NEW |