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 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_PUBLIC_COMMON_WEBKIT_PARAM_TRAITS_H_ | 13 #ifndef CONTENT_PUBLIC_COMMON_WEBKIT_PARAM_TRAITS_H_ |
14 #define CONTENT_PUBLIC_COMMON_WEBKIT_PARAM_TRAITS_H_ | 14 #define CONTENT_PUBLIC_COMMON_WEBKIT_PARAM_TRAITS_H_ |
15 #pragma once | |
16 | 15 |
17 #include <string> | 16 #include <string> |
18 | 17 |
19 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
20 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
21 #include "ipc/ipc_message_utils.h" | 20 #include "ipc/ipc_message_utils.h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
24 #include "webkit/blob/blob_data.h" | 23 #include "webkit/blob/blob_data.h" |
25 #include "webkit/glue/npruntime_util.h" | 24 #include "webkit/glue/npruntime_util.h" |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 struct CONTENT_EXPORT ParamTraits<webkit::forms::PasswordForm> { | 244 struct CONTENT_EXPORT ParamTraits<webkit::forms::PasswordForm> { |
246 typedef webkit::forms::PasswordForm param_type; | 245 typedef webkit::forms::PasswordForm param_type; |
247 static void Write(Message* m, const param_type& p); | 246 static void Write(Message* m, const param_type& p); |
248 static bool Read(const Message* m, PickleIterator* iter, param_type* p); | 247 static bool Read(const Message* m, PickleIterator* iter, param_type* p); |
249 static void Log(const param_type& p, std::string* l); | 248 static void Log(const param_type& p, std::string* l); |
250 }; | 249 }; |
251 | 250 |
252 } // namespace IPC | 251 } // namespace IPC |
253 | 252 |
254 #endif // CONTENT_PUBLIC_COMMON_WEBKIT_PARAM_TRAITS_H_ | 253 #endif // CONTENT_PUBLIC_COMMON_WEBKIT_PARAM_TRAITS_H_ |
OLD | NEW |