OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // 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 | 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 types so that they can be serialized over IPC. IPC::ParamTraits<> | 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 | 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, or because the same type is being used in multiple | 11 // public members, or because the same type is being used in multiple |
12 // *_messages.h headers. | 12 // *_messages.h headers. |
13 | 13 |
14 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ | 14 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ |
15 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ | 15 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ |
16 #pragma once | 16 #pragma once |
17 | 17 |
18 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
19 #include "base/platform_file.h" | |
20 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
21 #include "content/public/common/page_transition_types.h" | 20 #include "content/public/common/page_transition_types.h" |
22 #include "content/public/common/security_style.h" | 21 #include "content/public/common/security_style.h" |
23 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
24 #include "ipc/ipc_message_utils.h" | 23 #include "ipc/ipc_message_utils.h" |
25 #include "net/base/ip_endpoint.h" | 24 #include "net/base/ip_endpoint.h" |
26 #include "net/url_request/url_request_status.h" | 25 #include "net/url_request/url_request_status.h" |
27 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h
" | 26 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h
" |
28 #include "ui/gfx/native_widget_types.h" | 27 #include "ui/gfx/native_widget_types.h" |
29 #include "ui/surface/transport_dib.h" | 28 #include "ui/surface/transport_dib.h" |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 | 102 |
104 template <> | 103 template <> |
105 struct ParamTraits<net::IPEndPoint> { | 104 struct ParamTraits<net::IPEndPoint> { |
106 typedef net::IPEndPoint param_type; | 105 typedef net::IPEndPoint param_type; |
107 static void Write(Message* m, const param_type& p); | 106 static void Write(Message* m, const param_type& p); |
108 static bool Read(const Message* m, PickleIterator* iter, param_type* p); | 107 static bool Read(const Message* m, PickleIterator* iter, param_type* p); |
109 static void Log(const param_type& p, std::string* l); | 108 static void Log(const param_type& p, std::string* l); |
110 }; | 109 }; |
111 | 110 |
112 template <> | 111 template <> |
113 struct ParamTraits<base::PlatformFileInfo> { | |
114 typedef base::PlatformFileInfo param_type; | |
115 static void Write(Message* m, const param_type& p); | |
116 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | |
117 static void Log(const param_type& p, std::string* l); | |
118 }; | |
119 | |
120 template <> | |
121 struct CONTENT_EXPORT ParamTraits<content::Referrer> { | 112 struct CONTENT_EXPORT ParamTraits<content::Referrer> { |
122 typedef content::Referrer param_type; | 113 typedef content::Referrer param_type; |
123 static void Write(Message* m, const param_type& p); | 114 static void Write(Message* m, const param_type& p); |
124 static bool Read(const Message* m, PickleIterator* iter, param_type* p); | 115 static bool Read(const Message* m, PickleIterator* iter, param_type* p); |
125 static void Log(const param_type& p, std::string* l); | 116 static void Log(const param_type& p, std::string* l); |
126 }; | 117 }; |
127 | 118 |
128 template <> | 119 template <> |
129 struct CONTENT_EXPORT ParamTraits<gfx::Point> { | 120 struct CONTENT_EXPORT ParamTraits<gfx::Point> { |
130 typedef gfx::Point param_type; | 121 typedef gfx::Point param_type; |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 static void Write(Message* m, const param_type& p); | 226 static void Write(Message* m, const param_type& p); |
236 | 227 |
237 // Note: This function expects parameter |r| to be of type &SkBitmap since | 228 // Note: This function expects parameter |r| to be of type &SkBitmap since |
238 // r->SetConfig() and r->SetPixels() are called. | 229 // r->SetConfig() and r->SetPixels() are called. |
239 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | 230 static bool Read(const Message* m, PickleIterator* iter, param_type* r); |
240 | 231 |
241 static void Log(const param_type& p, std::string* l); | 232 static void Log(const param_type& p, std::string* l); |
242 }; | 233 }; |
243 | 234 |
244 template <> | 235 template <> |
245 struct SimilarTypeTraits<base::PlatformFileError> { | |
246 typedef int Type; | |
247 }; | |
248 | |
249 template <> | |
250 struct SimilarTypeTraits<WebKit::WebReferrerPolicy> { | 236 struct SimilarTypeTraits<WebKit::WebReferrerPolicy> { |
251 typedef int Type; | 237 typedef int Type; |
252 }; | 238 }; |
253 | 239 |
254 template <> | 240 template <> |
255 struct SimilarTypeTraits<content::PageTransition> { | 241 struct SimilarTypeTraits<content::PageTransition> { |
256 typedef int Type; | 242 typedef int Type; |
257 }; | 243 }; |
258 | 244 |
259 template <> | 245 template <> |
260 struct SimilarTypeTraits<content::SecurityStyle> { | 246 struct SimilarTypeTraits<content::SecurityStyle> { |
261 typedef int Type; | 247 typedef int Type; |
262 }; | 248 }; |
263 | 249 |
264 } // namespace IPC | 250 } // namespace IPC |
265 | 251 |
266 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ | 252 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ |
OLD | NEW |