2009-09-18 15:13:10 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2009-09-18 15:13:10 +00:00
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
#include "mozilla/Util.h"
|
|
|
|
|
2009-09-18 15:13:10 +00:00
|
|
|
#include "MoreTestingAtoms.h"
|
|
|
|
#include "nsStaticAtom.h"
|
|
|
|
#include "nsMemory.h"
|
|
|
|
|
|
|
|
// define storage for all atoms
|
|
|
|
#define MORE_TESTING_ATOM(_name, _value) nsIAtom* MoreTestingAtoms::_name;
|
|
|
|
#include "MoreTestingAtomList.h"
|
|
|
|
#undef MORE_TESTING_ATOM
|
|
|
|
|
2010-03-09 09:51:43 +00:00
|
|
|
#define MORE_TESTING_ATOM(name_, value_) NS_STATIC_ATOM_BUFFER(name_##_buffer, value_)
|
|
|
|
#include "MoreTestingAtomList.h"
|
|
|
|
#undef MORE_TESTING_ATOM
|
|
|
|
|
2009-09-18 15:13:10 +00:00
|
|
|
static const nsStaticAtom MoreTestingAtoms_info[] = {
|
|
|
|
|
2010-03-09 09:51:43 +00:00
|
|
|
#define MORE_TESTING_ATOM(name_, value_) NS_STATIC_ATOM(name_##_buffer, &MoreTestingAtoms::name_),
|
2009-09-18 15:13:10 +00:00
|
|
|
#include "MoreTestingAtomList.h"
|
|
|
|
#undef MORE_TESTING_ATOM
|
|
|
|
};
|
|
|
|
|
|
|
|
void MoreTestingAtoms::AddRefAtoms()
|
|
|
|
{
|
2012-03-09 02:22:57 +00:00
|
|
|
NS_RegisterStaticAtoms(MoreTestingAtoms_info);
|
2009-09-18 15:13:10 +00:00
|
|
|
}
|