Merge mozilla-central to autoland. CLOSED TREE
[gecko.git] / widget / WindowButtonType.h
blob76314709dff205fc89599e8a9c70bc37208be3b8
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_WindowButtonType_h
7 #define mozilla_WindowButtonType_h
9 #include <cstdint>
11 namespace mozilla {
13 enum class WindowButtonType : uint8_t {
14 Minimize,
15 Maximize, // Also covers restore.
16 Close,
17 Count,
22 #endif