1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_XULPersist_h
8 #define mozilla_dom_XULPersist_h
10 #include "nsStubDocumentObserver.h"
12 #ifndef MOZ_NEW_XULSTORE
22 class XULPersist final
: public nsStubDocumentObserver
{
26 explicit XULPersist(Document
* aDocument
);
28 void DropDocumentReference();
30 NS_DECL_NSIMUTATIONOBSERVER_ATTRIBUTECHANGED
33 void Persist(mozilla::dom::Element
* aElement
, int32_t aNameSpaceID
,
38 nsresult
ApplyPersistentAttributes();
39 nsresult
ApplyPersistentAttributesInternal();
40 nsresult
ApplyPersistentAttributesToElements(const nsAString
& aID
,
41 nsCOMArray
<Element
>& aElements
);
43 #ifndef MOZ_NEW_XULSTORE
44 nsCOMPtr
<nsIXULStore
> mLocalStore
;
47 // A weak pointer to our document. Nulled out by DropDocumentReference.
48 Document
* MOZ_NON_OWNING_REF mDocument
;
52 } // namespace mozilla
54 #endif // mozilla_dom_XULPersist_h