// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/common/pepper_file_messages.h" namespace IPC { void ParamTraits::Write(Message* m, const param_type& p) { WriteParam(m, static_cast(p.domain())); WriteParam(m, p.path()); } bool ParamTraits::Read(const Message* m, void** iter, param_type* p) { unsigned domain; FilePath path; if (!ReadParam(m, iter, &domain) || !ReadParam(m, iter, &path)) return false; if (domain > webkit::ppapi::PepperFilePath::DOMAIN_MAX_VALID) return false; *p = webkit::ppapi::PepperFilePath( static_cast(domain), path); return true; } void ParamTraits::Log(const param_type& p, std::string* l) { l->append("("); LogParam(static_cast(p.domain()), l); l->append(", "); LogParam(p.path(), l); l->append(")"); } } // namespace IPC