| 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 274e6532b7312221521e97105ee894531d8648f0..0e151b25fd780ad3200b6d753d9b4d2714ad9b57 100644
|
| --- a/content/common/indexed_db/indexed_db_param_traits.h
|
| +++ b/content/common/indexed_db/indexed_db_param_traits.h
|
| @@ -9,11 +9,10 @@
|
| #include "ipc/ipc_message.h"
|
| #include "ipc/ipc_param_traits.h"
|
|
|
| -class IndexedDBKey;
|
| -class IndexedDBKeyRange;
|
| -
|
| namespace content {
|
| +class IndexedDBKey;
|
| class IndexedDBKeyPath;
|
| +class IndexedDBKeyRange;
|
| class SerializedScriptValue;
|
| }
|
|
|
| @@ -33,24 +32,24 @@ struct ParamTraits<content::SerializedScriptValue> {
|
| };
|
|
|
| template <>
|
| -struct ParamTraits<IndexedDBKey> {
|
| - typedef IndexedDBKey param_type;
|
| +struct ParamTraits<content::IndexedDBKey> {
|
| + typedef content::IndexedDBKey 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<content::IndexedDBKeyPath> {
|
| - typedef content::IndexedDBKeyPath param_type;
|
| +struct ParamTraits<content::IndexedDBKeyRange> {
|
| + typedef content::IndexedDBKeyRange 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;
|
| +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);
|
|
|