mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
671d1a817e
Backed out changeset 7d06b68c44d0 (bug 1079335) Backed out changeset 92030169528e (bug 1079301) Backed out changeset c09d7f95554a (bug 1047483) Backed out changeset c199f1057d7e (bug 1047483) Backed out changeset 18830d07884c (bug 1047483) Backed out changeset e087289ccfbb (bug 1047483) Backed out changeset 6238ff5d3ed0 (bug 1047483) CLOSED TREE --HG-- rename : content/base/public/File.h => content/base/public/nsDOMFile.h rename : content/base/src/MultipartFileImpl.cpp => content/base/src/nsDOMBlobBuilder.cpp rename : content/base/src/MultipartFileImpl.h => content/base/src/nsDOMBlobBuilder.h rename : content/base/src/File.cpp => content/base/src/nsDOMFile.cpp
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* 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 "WorkerPrivate.h"
|
|
#include "ChromeWorkerScope.h"
|
|
#include "File.h"
|
|
#include "RuntimeService.h"
|
|
|
|
#include "jsapi.h"
|
|
#include "js/OldDebugAPI.h"
|
|
#include "mozilla/dom/RegisterWorkerBindings.h"
|
|
#include "mozilla/OSFileConstants.h"
|
|
|
|
USING_WORKERS_NAMESPACE
|
|
using namespace mozilla::dom;
|
|
|
|
bool
|
|
WorkerPrivate::RegisterBindings(JSContext* aCx, JS::Handle<JSObject*> aGlobal)
|
|
{
|
|
// Init Web IDL bindings
|
|
if (!RegisterWorkerBindings(aCx, aGlobal)) {
|
|
return false;
|
|
}
|
|
|
|
if (IsChromeWorker()) {
|
|
if (!DefineChromeWorkerFunctions(aCx, aGlobal) ||
|
|
!DefineOSFileConstants(aCx, aGlobal)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Init other classes we care about.
|
|
if (!file::InitClasses(aCx, aGlobal)) {
|
|
return false;
|
|
}
|
|
|
|
if (!JS_DefineProfilingFunctions(aCx, aGlobal)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|