mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f576909fbf
--HG-- extra : rebase_source : 03c1f15c9ad89e0cae2e53a633ab743656380bf5
99 lines
2.4 KiB
C++
99 lines
2.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=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_asmjscache_asmjscache_h
|
|
#define mozilla_dom_asmjscache_asmjscache_h
|
|
|
|
#include "ipc/IPCMessageUtils.h"
|
|
#include "js/TypeDecls.h"
|
|
#include "js/Vector.h"
|
|
|
|
class nsIPrincipal;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
namespace quota {
|
|
class Client;
|
|
}
|
|
|
|
namespace asmjscache {
|
|
|
|
class PAsmJSCacheEntryChild;
|
|
class PAsmJSCacheEntryParent;
|
|
|
|
enum OpenMode
|
|
{
|
|
eOpenForRead,
|
|
eOpenForWrite,
|
|
NUM_OPEN_MODES
|
|
};
|
|
|
|
// Implementation of AsmJSCacheOps, installed by nsJSEnvironment:
|
|
|
|
bool
|
|
OpenEntryForRead(JS::Handle<JSObject*> aGlobal,
|
|
const jschar* aBegin,
|
|
const jschar* aLimit,
|
|
size_t* aSize,
|
|
const uint8_t** aMemory,
|
|
intptr_t *aHandle);
|
|
void
|
|
CloseEntryForRead(JS::Handle<JSObject*> aGlobal,
|
|
size_t aSize,
|
|
const uint8_t* aMemory,
|
|
intptr_t aHandle);
|
|
bool
|
|
OpenEntryForWrite(JS::Handle<JSObject*> aGlobal,
|
|
const jschar* aBegin,
|
|
const jschar* aEnd,
|
|
size_t aSize,
|
|
uint8_t** aMemory,
|
|
intptr_t* aHandle);
|
|
void
|
|
CloseEntryForWrite(JS::Handle<JSObject*> aGlobal,
|
|
size_t aSize,
|
|
uint8_t* aMemory,
|
|
intptr_t aHandle);
|
|
bool
|
|
GetBuildId(js::Vector<char>* aBuildId);
|
|
|
|
// Called from QuotaManager.cpp:
|
|
|
|
quota::Client*
|
|
CreateClient();
|
|
|
|
// Called from ipc/ContentParent.cpp:
|
|
|
|
PAsmJSCacheEntryParent*
|
|
AllocEntryParent(OpenMode aOpenMode, uint32_t aSizeToWrite,
|
|
nsIPrincipal* aPrincipal);
|
|
|
|
void
|
|
DeallocEntryParent(PAsmJSCacheEntryParent* aActor);
|
|
|
|
// Called from ipc/ContentChild.cpp:
|
|
|
|
void
|
|
DeallocEntryChild(PAsmJSCacheEntryChild* aActor);
|
|
|
|
} // namespace asmjscache
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
namespace IPC {
|
|
|
|
template <>
|
|
struct ParamTraits<mozilla::dom::asmjscache::OpenMode> :
|
|
public EnumSerializer<mozilla::dom::asmjscache::OpenMode,
|
|
mozilla::dom::asmjscache::eOpenForRead,
|
|
mozilla::dom::asmjscache::NUM_OPEN_MODES>
|
|
{ };
|
|
|
|
} // namespace IPC
|
|
|
|
#endif // mozilla_dom_asmjscache_asmjscache_h
|