2018-11-14 22:02:33 +03: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: */
|
|
|
|
/* 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_TestingDeprecatedInterface_h
|
|
|
|
#define mozilla_dom_TestingDeprecatedInterface_h
|
|
|
|
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class TestingDeprecatedInterface final : public nsISupports,
|
|
|
|
public nsWrapperCache {
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(TestingDeprecatedInterface)
|
|
|
|
|
|
|
|
static already_AddRefed<TestingDeprecatedInterface> Constructor(
|
2019-09-12 14:01:17 +03:00
|
|
|
const GlobalObject& aGlobal);
|
2018-11-14 22:02:33 +03:00
|
|
|
|
|
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
|
|
|
|
nsIGlobalObject* GetParentObject() const { return mGlobal; }
|
|
|
|
|
|
|
|
void DeprecatedMethod() const;
|
|
|
|
|
|
|
|
bool DeprecatedAttribute() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit TestingDeprecatedInterface(nsIGlobalObject* aGlobal);
|
|
|
|
~TestingDeprecatedInterface();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIGlobalObject> mGlobal;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_TestingDeprecatedInterface_h
|