2012-01-26 20:54:03 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2014-06-30 15:39:45 +00:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-01-26 20:54:03 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2014-06-30 15:39:45 +00:00
|
|
|
* 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/. */
|
2012-01-26 20:54:03 +00:00
|
|
|
|
|
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ClearOnShutdown_Internal {
|
|
|
|
|
|
|
|
bool sHasShutDown = false;
|
2014-05-13 17:41:38 +00:00
|
|
|
StaticAutoPtr<LinkedList<ShutdownObserver>> sShutdownObservers;
|
2012-01-26 20:54:03 +00:00
|
|
|
|
|
|
|
} // namespace ClearOnShutdown_Internal
|
|
|
|
} // namespace mozilla
|