| 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_COMMON_CONTENT_PARAM_TRAITS_H_ | 14 #ifndef CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
| 15 #define CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ | 15 #define CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
| 16 | 16 |
| 17 #include "content/common/content_param_traits_macros.h" | 17 #include "content/common/content_param_traits_macros.h" |
| 18 #include "content/common/cursors/webcursor.h" | 18 #include "content/common/cursors/webcursor.h" |
| 19 #include "ipc/ipc_mojo_param_traits.h" | 19 #include "ipc/ipc_mojo_param_traits.h" |
| 20 #include "third_party/WebKit/public/platform/WebInputEvent.h" | 20 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 21 #include "third_party/WebKit/public/platform/blobs.mojom.h" |
| 21 | 22 |
| 22 namespace content { | 23 namespace content { |
| 23 class AccessibilityMode; | 24 class AccessibilityMode; |
| 24 class MessagePort; | 25 class MessagePort; |
| 25 } | 26 } |
| 26 | 27 |
| 27 namespace IPC { | 28 namespace IPC { |
| 28 | 29 |
| 29 template <> | 30 template <> |
| 30 struct ParamTraits<content::WebCursor> { | 31 struct ParamTraits<content::WebCursor> { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 struct CONTENT_EXPORT ParamTraits<content::AccessibilityMode> { | 68 struct CONTENT_EXPORT ParamTraits<content::AccessibilityMode> { |
| 68 typedef content::AccessibilityMode param_type; | 69 typedef content::AccessibilityMode param_type; |
| 69 static void GetSize(base::PickleSizer* sizer, const param_type& p); | 70 static void GetSize(base::PickleSizer* sizer, const param_type& p); |
| 70 static void Write(base::Pickle* m, const param_type& p); | 71 static void Write(base::Pickle* m, const param_type& p); |
| 71 static bool Read(const base::Pickle* m, | 72 static bool Read(const base::Pickle* m, |
| 72 base::PickleIterator* iter, | 73 base::PickleIterator* iter, |
| 73 param_type* r); | 74 param_type* r); |
| 74 static void Log(const param_type& p, std::string* l); | 75 static void Log(const param_type& p, std::string* l); |
| 75 }; | 76 }; |
| 76 | 77 |
| 78 template <> |
| 79 struct CONTENT_EXPORT ParamTraits<storage::mojom::BlobPtr> { |
| 80 typedef storage::mojom::BlobPtr param_type; |
| 81 static void GetSize(base::PickleSizer* sizer, const param_type& p); |
| 82 static void Write(base::Pickle* m, const param_type& p); |
| 83 static bool Read(const base::Pickle* m, |
| 84 base::PickleIterator* iter, |
| 85 param_type* r); |
| 86 static void Log(const param_type& p, std::string* l); |
| 87 }; |
| 88 |
| 77 } // namespace IPC | 89 } // namespace IPC |
| 78 | 90 |
| 79 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ | 91 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
| OLD | NEW |