https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1e58f0f64c127f80f5f8a1a3f27b575c4e6dd158 authored by ffxbld on 31 October 2012, 13:49:10 UTC
Added FENNEC_17_0b4_RELEASE FENNEC_17_0b4_BUILD1 tag(s) for changeset 2286829b4245. DONTBUILD CLOSED TREE a=release
Tip revision: 1e58f0f
nsArenaMemoryStats.h
/* 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 nsArenaMemoryStats_h
#define nsArenaMemoryStats_h

#define FRAME_ID_STAT_FIELD(classname) mArena##classname

struct nsArenaMemoryStats {
#define FRAME_ID(classname) size_t FRAME_ID_STAT_FIELD(classname);
#include "nsFrameIdList.h"
#undef FRAME_ID
  size_t mLineBoxes;
  size_t mRuleNodes;
  size_t mStyleContexts;
  size_t mOther;
};

#endif // nsArenaMemoryStats_h
back to top