blob: a782931d6bdeabf63623b3b2d4799e4a3b5bdaf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* 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_ipc_TransportSecurityInfoUtils_h
#define mozilla_ipc_TransportSecurityInfoUtils_h
#include "nsCOMPtr.h"
#include "nsITransportSecurityInfo.h"
namespace IPC {
template <typename>
struct ParamTraits;
template <>
struct ParamTraits<nsITransportSecurityInfo*> {
static void Write(Message* aMsg, nsITransportSecurityInfo* aParam);
static bool Read(const Message* aMsg, PickleIterator* aIter,
RefPtr<nsITransportSecurityInfo>* aResult);
};
template <>
struct ParamTraits<nsIX509Cert*> {
static void Write(Message* aMsg, nsIX509Cert* aCert);
static bool Read(const Message* aMsg, PickleIterator* aIter,
RefPtr<nsIX509Cert>* aResult);
};
} // namespace IPC
#endif // mozilla_ipc_TransportSecurityInfoUtils_h
|