summaryrefslogtreecommitdiffstats
path: root/content/common/pepper_file_messages.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/pepper_file_messages.cc')
-rw-r--r--content/common/pepper_file_messages.cc39
1 files changed, 0 insertions, 39 deletions
diff --git a/content/common/pepper_file_messages.cc b/content/common/pepper_file_messages.cc
deleted file mode 100644
index 313c2b7..0000000
--- a/content/common/pepper_file_messages.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2012 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,
- PickleIterator* 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