/* 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 struct ParamTraits; template <> struct ParamTraits { static void Write(Message* aMsg, nsITransportSecurityInfo* aParam); static bool Read(const Message* aMsg, PickleIterator* aIter, RefPtr* aResult); }; template <> struct ParamTraits { static void Write(Message* aMsg, nsIX509Cert* aCert); static bool Read(const Message* aMsg, PickleIterator* aIter, RefPtr* aResult); }; } // namespace IPC #endif // mozilla_ipc_TransportSecurityInfoUtils_h