2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2006-03-31 08:00:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This class wraps up the creation (and destruction) of the standard
|
|
|
|
* set of atoms used by gklayout; the atoms are created when gklayout
|
|
|
|
* is loaded and they are destroyed when gklayout is unloaded.
|
|
|
|
*/
|
|
|
|
|
2006-01-19 00:58:12 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2003-04-02 04:51:07 +00:00
|
|
|
#include "nsStaticAtom.h"
|
2008-07-30 08:50:48 +00:00
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
1999-07-18 00:24:47 +00:00
|
|
|
// define storage for all atoms
|
2010-03-08 15:44:59 +00:00
|
|
|
#define GK_ATOM(name_, value_) nsIAtom* nsGkAtoms::name_;
|
|
|
|
#include "nsGkAtomList.h"
|
|
|
|
#undef GK_ATOM
|
|
|
|
|
|
|
|
#define GK_ATOM(name_, value_) NS_STATIC_ATOM_BUFFER(name_##_buffer, value_)
|
2006-01-19 00:58:12 +00:00
|
|
|
#include "nsGkAtomList.h"
|
|
|
|
#undef GK_ATOM
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2006-01-19 00:58:12 +00:00
|
|
|
static const nsStaticAtom GkAtoms_info[] = {
|
2010-03-08 15:44:59 +00:00
|
|
|
#define GK_ATOM(name_, value_) NS_STATIC_ATOM(name_##_buffer, &nsGkAtoms::name_),
|
2006-01-19 00:58:12 +00:00
|
|
|
#include "nsGkAtomList.h"
|
|
|
|
#undef GK_ATOM
|
2003-02-22 15:58:07 +00:00
|
|
|
};
|
|
|
|
|
2006-01-19 00:58:12 +00:00
|
|
|
void nsGkAtoms::AddRefAtoms()
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2012-03-09 02:22:57 +00:00
|
|
|
NS_RegisterStaticAtoms(GkAtoms_info);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|