summaryrefslogtreecommitdiffstats
path: root/content/common/pepper_file_messages.cc
blob: 7986c62ef027636c8847c0d28e0d8c761811810f (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
33
34
35
36
37
38
39
// 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<webkit::ppapi::PepperFilePath>::Write(Message* m,
                                                       const param_type& p) {
  WriteParam(m, static_cast<unsigned>(p.domain()));
  WriteParam(m, p.path());
}

bool ParamTraits<webkit::ppapi::PepperFilePath>::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<webkit::ppapi::PepperFilePath::Domain>(domain), path);
  return true;
}

void ParamTraits<webkit::ppapi::PepperFilePath>::Log(const param_type& p,
                                                     std::string* l) {
  l->append("(");
  LogParam(static_cast<unsigned>(p.domain()), l);
  l->append(", ");
  LogParam(p.path(), l);
  l->append(")");
}

}  // namespace IPC