2016-12-17 00:21:51 +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/. */
|
|
|
|
|
|
|
|
#include "PaintWorkletGlobalScope.h"
|
2018-04-12 06:14:48 +03:00
|
|
|
#include "WorkletPrincipal.h"
|
2016-12-17 00:21:51 +03:00
|
|
|
#include "mozilla/dom/PaintWorkletGlobalScopeBinding.h"
|
2016-12-17 09:19:50 +03:00
|
|
|
#include "mozilla/dom/FunctionBinding.h"
|
2016-12-17 00:21:51 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-04-04 09:05:11 +03:00
|
|
|
PaintWorkletGlobalScope::PaintWorkletGlobalScope() = default;
|
2016-12-17 00:21:51 +03:00
|
|
|
|
|
|
|
bool
|
|
|
|
PaintWorkletGlobalScope::WrapGlobalObject(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JSObject*> aReflector)
|
|
|
|
{
|
2018-05-17 11:59:45 +03:00
|
|
|
JS::RealmOptions options;
|
2018-06-26 00:20:54 +03:00
|
|
|
return PaintWorkletGlobalScope_Binding::Wrap(aCx, this, this,
|
2016-12-17 00:21:51 +03:00
|
|
|
options,
|
2018-04-12 06:14:48 +03:00
|
|
|
WorkletPrincipal::GetWorkletPrincipal(),
|
2016-12-17 00:21:51 +03:00
|
|
|
true, aReflector);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PaintWorkletGlobalScope::RegisterPaint(const nsAString& aType,
|
|
|
|
VoidFunction& aProcessorCtor)
|
|
|
|
{
|
|
|
|
// Nothing to do here, yet.
|
|
|
|
}
|
|
|
|
|
|
|
|
} // dom namespace
|
|
|
|
} // mozilla namespace
|