OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file is used to define IPC::ParamTraits<> specializations for a number | 5 // This file is used to define IPC::ParamTraits<> specializations for a number |
6 // of WebKit types so that they can be serialized over IPC. IPC::ParamTraits<> | 6 // of WebKit 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 | 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 | 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 | 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 | 10 // manual serialization code. This is usually because they're not structs with |
11 // public members. | 11 // public members. |
12 | 12 |
13 #ifndef CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ | 13 #ifndef CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ |
14 #define CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ | 14 #define CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ |
15 #pragma once | 15 #pragma once |
16 | 16 |
17 #include <string> | 17 #include <string> |
18 | 18 |
19 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
20 #include "content/common/content_export.h" | 20 #include "content/common/content_export.h" |
21 #include "ipc/ipc_message_utils.h" | 21 #include "ipc/ipc_message_utils.h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
24 #include "webkit/blob/blob_data.h" | 24 #include "webkit/blob/blob_data.h" |
jianli
2011/09/30 00:59:34
This include is not longer needed.
| |
25 #include "webkit/glue/npruntime_util.h" | 25 #include "webkit/glue/npruntime_util.h" |
26 #include "webkit/glue/resource_type.h" | 26 #include "webkit/glue/resource_type.h" |
27 #include "webkit/glue/webcursor.h" | 27 #include "webkit/glue/webcursor.h" |
28 #include "webkit/glue/window_open_disposition.h" | 28 #include "webkit/glue/window_open_disposition.h" |
29 | 29 |
30 namespace webkit_glue { | 30 namespace webkit_glue { |
31 struct PasswordForm; | 31 struct PasswordForm; |
32 struct ResourceDevToolsInfo; | 32 struct ResourceDevToolsInfo; |
33 struct ResourceLoadTimingInfo; | 33 struct ResourceLoadTimingInfo; |
34 } | 34 } |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
82 | 82 |
83 template <> | 83 template <> |
84 struct ParamTraits<scoped_refptr<webkit_glue::ResourceDevToolsInfo> > { | 84 struct ParamTraits<scoped_refptr<webkit_glue::ResourceDevToolsInfo> > { |
85 typedef scoped_refptr<webkit_glue::ResourceDevToolsInfo> param_type; | 85 typedef scoped_refptr<webkit_glue::ResourceDevToolsInfo> param_type; |
86 static void Write(Message* m, const param_type& p); | 86 static void Write(Message* m, const param_type& p); |
87 static bool Read(const Message* m, void** iter, param_type* r); | 87 static bool Read(const Message* m, void** iter, param_type* r); |
88 static void Log(const param_type& p, std::string* l); | 88 static void Log(const param_type& p, std::string* l); |
89 }; | 89 }; |
90 | 90 |
91 template <> | 91 template <> |
92 struct ParamTraits<scoped_refptr<webkit_blob::BlobData > > { | |
93 typedef scoped_refptr<webkit_blob::BlobData> param_type; | |
94 static void Write(Message* m, const param_type& p); | |
95 static bool Read(const Message* m, void** iter, param_type* r); | |
96 static void Log(const param_type& p, std::string* l); | |
97 }; | |
98 | |
99 template <> | |
100 struct ParamTraits<NPVariant_Param> { | 92 struct ParamTraits<NPVariant_Param> { |
101 typedef NPVariant_Param param_type; | 93 typedef NPVariant_Param param_type; |
102 static void Write(Message* m, const param_type& p); | 94 static void Write(Message* m, const param_type& p); |
103 static bool Read(const Message* m, void** iter, param_type* r); | 95 static bool Read(const Message* m, void** iter, param_type* r); |
104 static void Log(const param_type& p, std::string* l); | 96 static void Log(const param_type& p, std::string* l); |
105 }; | 97 }; |
106 | 98 |
107 template <> | 99 template <> |
108 struct ParamTraits<NPIdentifier_Param> { | 100 struct ParamTraits<NPIdentifier_Param> { |
109 typedef NPIdentifier_Param param_type; | 101 typedef NPIdentifier_Param param_type; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
231 struct CONTENT_EXPORT ParamTraits<webkit_glue::PasswordForm> { | 223 struct CONTENT_EXPORT ParamTraits<webkit_glue::PasswordForm> { |
232 typedef webkit_glue::PasswordForm param_type; | 224 typedef webkit_glue::PasswordForm param_type; |
233 static void Write(Message* m, const param_type& p); | 225 static void Write(Message* m, const param_type& p); |
234 static bool Read(const Message* m, void** iter, param_type* p); | 226 static bool Read(const Message* m, void** iter, param_type* p); |
235 static void Log(const param_type& p, std::string* l); | 227 static void Log(const param_type& p, std::string* l); |
236 }; | 228 }; |
237 | 229 |
238 } // namespace IPC | 230 } // namespace IPC |
239 | 231 |
240 #endif // CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ | 232 #endif // CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ |
OLD | NEW |