Backed out changeset 06f41c22f3a6 (bug 1888460) for causing linux xpcshell failures...
[gecko.git] / dom / media / nsIDocumentActivity.h
blob2b28247598970ab20bd14358b32d235763b4abf2
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsIDocumentActivity_h__
7 #define nsIDocumentActivity_h__
9 #include "nsISupports.h"
11 #define NS_IDOCUMENTACTIVITY_IID \
12 { \
13 0x9b9f584e, 0xefa8, 0x11e3, { \
14 0xbb, 0x74, 0x5e, 0xdd, 0x1d, 0x5d, 0x46, 0xb0 \
15 } \
18 class nsIDocumentActivity : public nsISupports {
19 public:
20 NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOCUMENTACTIVITY_IID)
22 virtual void NotifyOwnerDocumentActivityChanged() = 0;
25 NS_DEFINE_STATIC_IID_ACCESSOR(nsIDocumentActivity, NS_IDOCUMENTACTIVITY_IID)
27 /* Use this macro when declaring classes that implement this interface. */
28 #define NS_DECL_NSIDOCUMENTACTIVITY \
29 virtual void NotifyOwnerDocumentActivityChanged() override;
31 #endif /* nsIDocumentActivity_h__ */