Source code

Revision control

Copy as Markdown

Other Tools

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=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_ipc_Tainting_h
#define mozilla_ipc_Tainting_h
#include "mozilla/Tainting.h"
#include "chrome/common/ipc_message_utils.h"
namespace IPC {
template <typename T>
struct ParamTraits<mozilla::Tainted<T>> {
static void Write(MessageWriter* aWriter, const mozilla::Tainted<T>& aParam) {
WriteParam(aWriter, aParam.mValue);
}
static void Write(MessageWriter* aWriter, mozilla::Tainted<T>&& aParam) {
WriteParam(aWriter, std::move(aParam.mValue));
}
static bool Read(MessageReader* aReader, mozilla::Tainted<T>* aResult) {
return ReadParam(aReader, &(aResult->mValue));
}
};
} // namespace IPC
#endif // ifndef mozilla_ipc_Tainting_h