tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsPresArenaObjectList.h (1092B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 /* a list of all types that can be allocated in an nsPresArena, for
      8   preprocessing */
      9 
     10 // These are objects that can be stored in the pres arena
     11 //
     12 // FIXME(emilio): Including abstract frame classes in the arena is a bit
     13 // wasteful, but it simplifies the allocation code.
     14 #define FRAME_ID(classname, ...) PRES_ARENA_OBJECT(classname)
     15 #define ABSTRACT_FRAME_ID(classname) PRES_ARENA_OBJECT(classname)
     16 #include "mozilla/FrameIdList.h"
     17 #undef FRAME_ID
     18 #undef ABSTRACT_FRAME_ID
     19 PRES_ARENA_OBJECT(nsLineBox)
     20 PRES_ARENA_OBJECT(nsFrameList)
     21 PRES_ARENA_OBJECT(CustomCounterStyle)
     22 PRES_ARENA_OBJECT(DependentBuiltinCounterStyle)
     23 PRES_ARENA_OBJECT(nsCallbackEventRequest)
     24 PRES_ARENA_OBJECT(nsIntervalSet_Interval)
     25 PRES_ARENA_OBJECT(CellData)
     26 PRES_ARENA_OBJECT(BCCellData)