| Index: content/public/common/common_param_traits.h
|
| diff --git a/content/public/common/common_param_traits.h b/content/public/common/common_param_traits.h
|
| index 53ef734a3bff2c40935ef1032dc78fd1a86c9cb8..c29c7a103dc73bc092d2088c5d54b2d874130cd8 100644
|
| --- a/content/public/common/common_param_traits.h
|
| +++ b/content/public/common/common_param_traits.h
|
| @@ -25,6 +25,7 @@
|
| class SkBitmap;
|
|
|
| namespace content {
|
| +class PageState;
|
| struct Referrer;
|
| }
|
|
|
| @@ -59,6 +60,14 @@ struct CONTENT_EXPORT ParamTraits<net::HostPortPair> {
|
| };
|
|
|
| template <>
|
| +struct CONTENT_EXPORT ParamTraits<content::PageState> {
|
| + typedef content::PageState param_type;
|
| + static void Write(Message* m, const param_type& p);
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* p);
|
| + static void Log(const param_type& p, std::string* l);
|
| +};
|
| +
|
| +template <>
|
| struct CONTENT_EXPORT ParamTraits<content::Referrer> {
|
| typedef content::Referrer param_type;
|
| static void Write(Message* m, const param_type& p);
|
|
|