Index: content/common/indexed_db/indexed_db_param_traits.h |
diff --git a/content/common/indexed_db/indexed_db_param_traits.h b/content/common/indexed_db/indexed_db_param_traits.h |
index 3dfd5b84857dab564b68cf59fbb67bd16c48d5d9..274e6532b7312221521e97105ee894531d8648f0 100644 |
--- a/content/common/indexed_db/indexed_db_param_traits.h |
+++ b/content/common/indexed_db/indexed_db_param_traits.h |
@@ -13,6 +13,7 @@ class IndexedDBKey; |
class IndexedDBKeyRange; |
namespace content { |
+class IndexedDBKeyPath; |
class SerializedScriptValue; |
} |
@@ -40,6 +41,14 @@ struct ParamTraits<IndexedDBKey> { |
}; |
template <> |
+struct ParamTraits<content::IndexedDBKeyPath> { |
+ typedef content::IndexedDBKeyPath 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<IndexedDBKeyRange> { |
typedef IndexedDBKeyRange param_type; |
static void Write(Message* m, const param_type& p); |