gecko-dev/layout/base/nsPresArenaObjectList.h

36 строки
1.2 KiB
C
Исходник Обычный вид История

/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
/* 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/. */
/* a list of all types that can be allocated in an nsPresArena, for
preprocessing */
#ifdef STYLE_STRUCT
#error Sorry nsPresArenaObjectList.h needs to use STYLE_STRUCT!
#endif
// These are objects that can be stored in the pres arena
PRES_ARENA_OBJECT(GeckoStyleContext)
PRES_ARENA_OBJECT(nsLineBox)
PRES_ARENA_OBJECT(nsRuleNode)
PRES_ARENA_OBJECT(DisplayItemData)
PRES_ARENA_OBJECT(nsInheritedStyleData)
PRES_ARENA_OBJECT(nsResetStyleData)
PRES_ARENA_OBJECT(nsConditionalResetStyleData)
PRES_ARENA_OBJECT(nsConditionalResetStyleDataEntry)
PRES_ARENA_OBJECT(nsFrameList)
PRES_ARENA_OBJECT(CustomCounterStyle)
PRES_ARENA_OBJECT(DependentBuiltinCounterStyle)
PRES_ARENA_OBJECT(nsCallbackEventRequest)
PRES_ARENA_OBJECT(nsIntervalSet_Interval)
PRES_ARENA_OBJECT(CellData)
PRES_ARENA_OBJECT(BCCellData)
#define STYLE_STRUCT(name_, checkdata_cb_) \
PRES_ARENA_OBJECT(nsStyle##name_)
#include "nsStyleStructList.h"
#undef STYLE_STRUCT