2013-07-09 14:45:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 sw=2 et tw=78: */
|
|
|
|
/* 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_WindowNamedPropertiesHandler_h
|
2013-08-10 05:10:18 +00:00
|
|
|
#define mozilla_dom_WindowNamedPropertiesHandler_h
|
2013-07-09 14:45:13 +00:00
|
|
|
|
|
|
|
#include "mozilla/dom/DOMJSProxyHandler.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class WindowNamedPropertiesHandler : public BaseDOMProxyHandler
|
|
|
|
{
|
|
|
|
public:
|
2014-08-28 20:47:16 +00:00
|
|
|
MOZ_CONSTEXPR WindowNamedPropertiesHandler()
|
2014-06-27 11:44:02 +00:00
|
|
|
: BaseDOMProxyHandler(nullptr, /* hasPrototype = */ true)
|
2013-07-09 14:45:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual bool
|
2014-08-02 03:37:14 +00:00
|
|
|
getOwnPropDescriptor(JSContext* aCx, JS::Handle<JSObject*> aProxy,
|
|
|
|
JS::Handle<jsid> aId,
|
|
|
|
bool /* unused */,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> aDesc)
|
2015-03-21 16:28:04 +00:00
|
|
|
const override;
|
2013-07-09 14:45:13 +00:00
|
|
|
virtual bool
|
|
|
|
defineProperty(JSContext* aCx, JS::Handle<JSObject*> aProxy,
|
|
|
|
JS::Handle<jsid> aId,
|
2015-02-17 17:58:43 +00:00
|
|
|
JS::Handle<JSPropertyDescriptor> aDesc,
|
2015-03-21 16:28:04 +00:00
|
|
|
JS::ObjectOpResult &result) const override;
|
2013-07-09 14:45:13 +00:00
|
|
|
virtual bool
|
2014-04-16 02:58:44 +00:00
|
|
|
ownPropNames(JSContext* aCx, JS::Handle<JSObject*> aProxy, unsigned flags,
|
2015-03-21 16:28:04 +00:00
|
|
|
JS::AutoIdVector& aProps) const override;
|
2013-07-09 14:45:13 +00:00
|
|
|
virtual bool
|
|
|
|
delete_(JSContext* aCx, JS::Handle<JSObject*> aProxy, JS::Handle<jsid> aId,
|
2015-03-21 16:28:04 +00:00
|
|
|
JS::ObjectOpResult &aResult) const override;
|
2013-07-09 14:45:13 +00:00
|
|
|
virtual bool
|
2014-10-21 18:40:04 +00:00
|
|
|
preventExtensions(JSContext* aCx, JS::Handle<JSObject*> aProxy,
|
2015-03-21 16:28:04 +00:00
|
|
|
JS::ObjectOpResult& aResult) const override
|
2014-10-21 18:40:04 +00:00
|
|
|
{
|
2015-02-04 18:01:01 +00:00
|
|
|
return aResult.failCantPreventExtensions();
|
2014-10-21 18:40:04 +00:00
|
|
|
}
|
|
|
|
virtual bool
|
2013-07-09 14:45:13 +00:00
|
|
|
isExtensible(JSContext* aCx, JS::Handle<JSObject*> aProxy,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool* aIsExtensible) const override
|
2013-07-09 14:45:13 +00:00
|
|
|
{
|
|
|
|
*aIsExtensible = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
virtual const char*
|
2015-03-21 16:28:04 +00:00
|
|
|
className(JSContext *aCx, JS::Handle<JSObject*> aProxy) const override
|
2013-07-09 14:45:13 +00:00
|
|
|
{
|
|
|
|
return "WindowProperties";
|
|
|
|
}
|
|
|
|
|
2014-06-27 11:44:04 +00:00
|
|
|
static const WindowNamedPropertiesHandler*
|
2013-07-09 14:45:13 +00:00
|
|
|
getInstance()
|
|
|
|
{
|
2014-06-27 11:44:04 +00:00
|
|
|
static const WindowNamedPropertiesHandler instance;
|
2013-07-09 14:45:13 +00:00
|
|
|
return &instance;
|
|
|
|
}
|
|
|
|
|
2014-09-05 20:36:36 +00:00
|
|
|
// For Create, aProto is the parent of the interface prototype object of the
|
|
|
|
// Window we're associated with.
|
|
|
|
static JSObject*
|
|
|
|
Create(JSContext *aCx, JS::Handle<JSObject*> aProto);
|
2013-07-09 14:45:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_WindowNamedPropertiesHandler_h */
|