| Index: content/common/input/input_param_traits.h
|
| diff --git a/content/common/input/input_param_traits.h b/content/common/input/input_param_traits.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2307954ef7b61e2262922cc4a87025491002534b
|
| --- /dev/null
|
| +++ b/content/common/input/input_param_traits.h
|
| @@ -0,0 +1,76 @@
|
| +// 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.
|
| +
|
| +// This file is used to define IPC::ParamTraits<> specializations for a number
|
| +// of types so that they can be serialized over IPC. IPC::ParamTraits<>
|
| +// specializations for basic types (like int and std::string) and types in the
|
| +// 'base' project can be found in ipc/ipc_message_utils.h. This file contains
|
| +// specializations for types that are used by the content code, and which need
|
| +// manual serialization code. This is usually because they're not structs with
|
| +// public members, or because the same type is being used in multiple
|
| +// *_messages.h headers.
|
| +
|
| +#ifndef CONTENT_COMMON_INPUT_INPUT_PARAM_TRAITS_H_
|
| +#define CONTENT_COMMON_INPUT_INPUT_PARAM_TRAITS_H_
|
| +
|
| +#include "base/memory/scoped_ptr.h"
|
| +#include "content/common/input/event_packet.h"
|
| +#include "content/common/input/input_param_traits_macros.h"
|
| +#include "content/common/input/web_event.h"
|
| +
|
| +namespace IPC {
|
| +
|
| +// TODO(jdduke): There should be a common copy of this utility somewhere... Move
|
| +// or remove appropriately.
|
| +template<class P>
|
| +struct ParamTraits<scoped_ptr<P> > {
|
| + typedef scoped_ptr<P> param_type;
|
| + static void Write(Message* m, const param_type& p) {
|
| + bool valid = !!p;
|
| + WriteParam(m, valid);
|
| + if (valid)
|
| + WriteParam(m, *p);
|
| + }
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* r) {
|
| + bool valid = false;
|
| + if (!ReadParam(m, iter, &valid))
|
| + return false;
|
| +
|
| + if (!valid) {
|
| + r->reset();
|
| + return true;
|
| + }
|
| +
|
| + param_type temp(new P());
|
| + if (!ReadParam(m, iter, temp.get()))
|
| + return false;
|
| +
|
| + r->swap(temp);
|
| + return true;
|
| + }
|
| + static void Log(const param_type& p, std::string* l) {
|
| + if (p)
|
| + LogParam(*p, l);
|
| + }
|
| +};
|
| +
|
| +template <>
|
| +struct CONTENT_EXPORT ParamTraits<content::EventPacket> {
|
| + typedef content::EventPacket param_type;
|
| + static void Write(Message* m, const param_type& p);
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* r);
|
| + static void Log(const param_type& p, std::string* l);
|
| +};
|
| +
|
| +template <>
|
| +struct CONTENT_EXPORT ParamTraits<content::WebEvent> {
|
| + typedef content::WebEvent param_type;
|
| + static void Write(Message* m, const param_type& p);
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* r);
|
| + static void Log(const param_type& p, std::string* l);
|
| +};
|
| +
|
| +} // namespace IPC
|
| +
|
| +#endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
|
|
|