forked from mirrors/gecko-dev
This accidentally broke in 119 and nobody noticed on the whole nightly + beta cycle (other than due to bug 1861669). Given sidebars are not super-commonly used these days, this makes the code a bit less fragile, and it still looks pretty good IMO. Also, since we want to get rid of <xul:tree>s, this is one less thing to worry about. Depends on D192102 Differential Revision: https://phabricator.services.mozilla.com/D192103
17 lines
589 B
C
17 lines
589 B
C
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
#ifndef mozilla_widget_ThemeGeometryType
|
|
#define mozilla_widget_ThemeGeometryType
|
|
|
|
enum MacThemeGeometryType {
|
|
eThemeGeometryTypeTitlebar = 1,
|
|
eThemeGeometryTypeToolbar,
|
|
eThemeGeometryTypeToolbox,
|
|
eThemeGeometryTypeWindowButtons,
|
|
eThemeGeometryTypeMenu,
|
|
eThemeGeometryTypeTooltip,
|
|
};
|
|
|
|
#endif
|