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: */
|
2013-10-02 20:09:18 +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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_ElementInlines_h
|
|
|
|
#define mozilla_dom_ElementInlines_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/Element.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
inline void
|
2014-06-19 02:09:35 +00:00
|
|
|
Element::RegisterActivityObserver()
|
2013-10-02 20:09:18 +00:00
|
|
|
{
|
2014-06-19 02:09:35 +00:00
|
|
|
OwnerDoc()->RegisterActivityObserver(this);
|
2013-10-02 20:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void
|
2014-06-19 02:09:35 +00:00
|
|
|
Element::UnregisterActivityObserver()
|
2013-10-02 20:09:18 +00:00
|
|
|
{
|
2014-06-19 02:09:35 +00:00
|
|
|
OwnerDoc()->UnregisterActivityObserver(this);
|
2013-10-02 20:09:18 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-10-02 20:09:18 +00:00
|
|
|
|
|
|
|
#endif // mozilla_dom_ElementInlines_h
|