mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Split aData into smaller chunks to avoid going over the IPC message size limit (1335989).
This commit is contained in:
parent
0104a9cd3c
commit
e84c7ab0c3
6 changed files with 32 additions and 4 deletions
|
|
@ -385,6 +385,18 @@ struct ParamTraits<nsLiteralCString> : ParamTraits<nsACString>
|
|||
typedef nsLiteralCString paramType;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct ParamTraits<nsDependentSubstring> : ParamTraits<nsAString>
|
||||
{
|
||||
typedef nsDependentSubstring paramType;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct ParamTraits<nsDependentCSubstring> : ParamTraits<nsACString>
|
||||
{
|
||||
typedef nsDependentCSubstring paramType;
|
||||
};
|
||||
|
||||
#ifdef MOZILLA_INTERNAL_API
|
||||
|
||||
template<>
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@ Types = (
|
|||
'nsresult',
|
||||
'nsString',
|
||||
'nsCString',
|
||||
'nsDependentSubstring',
|
||||
'nsDependentCSubstring',
|
||||
'mozilla::ipc::Shmem',
|
||||
'mozilla::ipc::FileDescriptor'
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue