forked from mirrors/gecko-dev
This patch does: - add to ExtensionBrowser two new data members to keep track of value for the browser.runtime.lastError and if it was checked while the chrome compatible callback was being executed - add to ExtensionBrowser 3 new methods to set, get and clear the lastError value - add a reference to the ExtensionBrowser to all API namespaces and API objects classes, because it has to be then propagated to the ChromeCompatCallbackHandler instances that are being attached to the promise result of the async API methods calls if the caller did pass the optional callback parameter - tweak the ChromeCompatCallbackHandler class to set the lastError value before calling the callback in ChromeCompatCallbackHAndler::RejectedCallback and then clear it after the call has been completed and report it to the console if it wasn't checked - change the ExtensionRuntime::GetLastError methhod to restrieve and return the value from the ExtensionBrowser instance Differential Revision: https://phabricator.services.mozilla.com/D107327
64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
/* 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/. */
|
|
|
|
#include "ExtensionMockAPI.h"
|
|
#include "ExtensionEventManager.h"
|
|
|
|
#include "mozilla/dom/ExtensionMockAPIBinding.h"
|
|
#include "mozilla/extensions/ExtensionPort.h"
|
|
#include "nsIGlobalObject.h"
|
|
|
|
namespace mozilla {
|
|
namespace extensions {
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(ExtensionMockAPI);
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(ExtensionMockAPI)
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(ExtensionMockAPI, mGlobal,
|
|
mExtensionBrowser, mOnTestEventMgr);
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(ExtensionMockAPI)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
ExtensionMockAPI::ExtensionMockAPI(nsIGlobalObject* aGlobal,
|
|
ExtensionBrowser* aExtensionBrowser)
|
|
: mGlobal(aGlobal), mExtensionBrowser(aExtensionBrowser) {
|
|
MOZ_DIAGNOSTIC_ASSERT(mGlobal);
|
|
MOZ_DIAGNOSTIC_ASSERT(mExtensionBrowser);
|
|
}
|
|
|
|
/* static */
|
|
bool ExtensionMockAPI::IsAllowed(JSContext* aCx, JSObject* aGlobal) {
|
|
return true;
|
|
}
|
|
|
|
JSObject* ExtensionMockAPI::WrapObject(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) {
|
|
return dom::ExtensionMockAPI_Binding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
nsIGlobalObject* ExtensionMockAPI::GetParentObject() const { return mGlobal; }
|
|
|
|
void ExtensionMockAPI::GetPropertyAsErrorObject(
|
|
JSContext* aCx, JS::MutableHandle<JS::Value> aRetval) {
|
|
ExtensionAPIBase::GetWebExtPropertyAsJSValue(aCx, u"propertyAsErrorObject"_ns,
|
|
aRetval);
|
|
}
|
|
|
|
void ExtensionMockAPI::GetPropertyAsString(DOMString& aRetval) {
|
|
GetWebExtPropertyAsString(u"getPropertyAsString"_ns, aRetval);
|
|
}
|
|
|
|
ExtensionEventManager* ExtensionMockAPI::OnTestEvent() {
|
|
if (!mOnTestEventMgr) {
|
|
mOnTestEventMgr = CreateEventManager(u"onTestEvent"_ns);
|
|
}
|
|
|
|
return mOnTestEventMgr;
|
|
}
|
|
|
|
} // namespace extensions
|
|
} // namespace mozilla
|