blob: 5a1e5fa00a6ee4100c36ba90586bf9bdf9afca83 [file] [log] [blame]
[email protected]9d8ea302012-09-25 15:04:221// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// This file is used to define IPC::ParamTraits<> specializations for a number
6// of types so that they can be serialized over IPC. IPC::ParamTraits<>
7// specializations for basic types (like int and std::string) and types in the
8// 'base' project can be found in ipc/ipc_message_utils.h. This file contains
9// specializations for types that are used by the content code, and which need
10// manual serialization code. This is usually because they're not structs with
11// public members, or because the same type is being used in multiple
12// *_messages.h headers.
13
14#ifndef CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
15#define CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
16
17#include "content/common/content_param_traits_macros.h"
[email protected]2255a9332013-06-17 05:12:3118#include "third_party/WebKit/public/web/WebInputEvent.h"
[email protected]19df7002013-05-31 00:25:3919#include "webkit/common/cursors/webcursor.h"
[email protected]9d8ea302012-09-25 15:04:2220
[email protected]db4fc1e2013-09-06 20:01:5121namespace gfx {
22class Range;
[email protected]9d8ea302012-09-25 15:04:2223}
24
[email protected]db4fc1e2013-09-06 20:01:5125namespace net {
26class IPEndPoint;
[email protected]9d8ea302012-09-25 15:04:2227}
28
[email protected]9d8ea302012-09-25 15:04:2229namespace IPC {
30
31template <>
32struct ParamTraits<net::IPEndPoint> {
33 typedef net::IPEndPoint param_type;
34 static void Write(Message* m, const param_type& p);
35 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
36 static void Log(const param_type& p, std::string* l);
37};
38
39template <>
[email protected]db4fc1e2013-09-06 20:01:5140struct ParamTraits<gfx::Range> {
41 typedef gfx::Range param_type;
[email protected]9d8ea302012-09-25 15:04:2242 static void Write(Message* m, const param_type& p);
43 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
44 static void Log(const param_type& p, std::string* l);
45};
46
47template <>
48struct ParamTraits<WebCursor> {
49 typedef WebCursor param_type;
50 static void Write(Message* m, const param_type& p) {
51 p.Serialize(m);
52 }
53 static bool Read(const Message* m, PickleIterator* iter, param_type* r) {
54 return r->Deserialize(iter);
55 }
56 static void Log(const param_type& p, std::string* l) {
57 l->append("<WebCursor>");
58 }
59};
60
61typedef const WebKit::WebInputEvent* WebInputEventPointer;
62template <>
63struct ParamTraits<WebInputEventPointer> {
64 typedef WebInputEventPointer param_type;
[email protected]0dea1652012-12-14 00:09:0965 static void Write(Message* m, const param_type& p);
[email protected]9d8ea302012-09-25 15:04:2266 // Note: upon read, the event has the lifetime of the message.
[email protected]0dea1652012-12-14 00:09:0967 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
68 static void Log(const param_type& p, std::string* l);
[email protected]9d8ea302012-09-25 15:04:2269};
70
71} // namespace IPC
72
73#endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_