| Index: content/public/common/webkit_param_traits.h
|
| diff --git a/content/public/common/webkit_param_traits.h b/content/public/common/webkit_param_traits.h
|
| index c819122702b54c27b0dbab6cc6d0f094a42f5d92..7132053b30b6049c1d33b27a9959e77b466dd95b 100644
|
| --- a/content/public/common/webkit_param_traits.h
|
| +++ b/content/public/common/webkit_param_traits.h
|
| @@ -18,6 +18,8 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "content/common/content_export.h"
|
| #include "ipc/ipc_message_utils.h"
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebData.h"
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformationMatrix.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h"
|
| #include "webkit/blob/blob_data.h"
|
| @@ -78,6 +80,22 @@ struct NPIdentifier_Param {
|
| namespace IPC {
|
|
|
| template <>
|
| +struct ParamTraits<WebKit::WebData> {
|
| + typedef WebKit::WebData param_type;
|
| + static void Write(Message* m, const param_type& p);
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* r);
|
| + static void Log(const param_type& p, std::string* l);
|
| +};
|
| +
|
| +template <>
|
| +struct ParamTraits<WebKit::WebTransformationMatrix> {
|
| + typedef WebKit::WebTransformationMatrix param_type;
|
| + static void Write(Message* m, const param_type& p);
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* r);
|
| + static void Log(const param_type& p, std::string* l);
|
| +};
|
| +
|
| +template <>
|
| struct ParamTraits<webkit_glue::ResourceLoadTimingInfo> {
|
| typedef webkit_glue::ResourceLoadTimingInfo param_type;
|
| static void Write(Message* m, const param_type& p);
|
|
|