gecko-dev/dom/base/nsAtomListUtils.h
Nicholas Nethercote 074a872086 Bug 1410294 (part 1) - Rename nsStaticAtom as nsStaticAtomSetup. r=froydnj.
Because it's the type we use to set up static atoms at startup, not the static
atom itself.

The patch accordingly renames some parameters, variables, and NS_STATIC_ATOM,
for consistency.

MozReview-Commit-ID: 1a0KvhYNNw2

--HG--
extra : rebase_source : 5c66e5b2dfe053a368bf3584d957198aec4cce91
2017-10-20 14:04:47 +11:00

26 lines
720 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
/*
* Static helper class for implementing atom lists.
*/
#ifndef nsAtomListUtils_h__
#define nsAtomListUtils_h__
#include <stdint.h>
class nsAtom;
struct nsStaticAtomSetup;
class nsAtomListUtils {
public:
static bool IsMember(nsAtom *aAtom,
const nsStaticAtomSetup* aSetup,
uint32_t aCount);
};
#endif /* !defined(nsAtomListUtils_h__) */