diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-05 02:00:42 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-05 02:00:42 +0000 |
commit | db803aaecaa3270b2b21c3d4200dc04cf733b655 (patch) | |
tree | c88d90537845ef39c4d33c8b00deea1fc5844e60 /chrome/common/common_param_traits.h | |
parent | 83c8265e74ad2bca349e291e440ab9a8a0759093 (diff) | |
download | chromium_src-db803aaecaa3270b2b21c3d4200dc04cf733b655.zip chromium_src-db803aaecaa3270b2b21c3d4200dc04cf733b655.tar.gz chromium_src-db803aaecaa3270b2b21c3d4200dc04cf733b655.tar.bz2 |
Move socket stream messages to content, in preparation for moving its dispatcher. In this change I also converted p2p_messages to use the new automated way of serializing structs.
Review URL: http://codereview.chromium.org/6621025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77019 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/common_param_traits.h')
-rw-r--r-- | chrome/common/common_param_traits.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/common/common_param_traits.h b/chrome/common/common_param_traits.h index 860dcc6..abeaa117 100644 --- a/chrome/common/common_param_traits.h +++ b/chrome/common/common_param_traits.h @@ -35,7 +35,6 @@ // Forward declarations. struct Geoposition; -class GURL; class SkBitmap; class DictionaryValue; class ListValue; @@ -78,16 +77,6 @@ struct ParamTraits<SkBitmap> { static void Log(const param_type& p, std::string* l); }; - -template <> -struct ParamTraits<GURL> { - typedef GURL param_type; - static void Write(Message* m, const param_type& p); - static bool Read(const Message* m, void** iter, param_type* p); - static void Log(const param_type& p, std::string* l); -}; - - template <> struct ParamTraits<gfx::Point> { typedef gfx::Point param_type; |