Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1081)

Unified Diff: content/common/indexed_db/indexed_db_param_traits.h

Issue 9447084: Refactor Pickle Read methods to use higher performance PickleIterator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jar feedback Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 930ed0b04ce38bcf8304918ec7d3f7d5e0833dba..cfd9281cb13afee3e1f4b1b48c1f0be91646756c 100644
--- a/content/common/indexed_db/indexed_db_param_traits.h
+++ b/content/common/indexed_db/indexed_db_param_traits.h
@@ -27,7 +27,7 @@ template <>
struct ParamTraits<content::SerializedScriptValue> {
typedef content::SerializedScriptValue param_type;
static void Write(Message* m, const param_type& p);
- static bool Read(const Message* m, void** iter, param_type* r);
+ static bool Read(const Message* m, PickleReader* iter, param_type* r);
static void Log(const param_type& p, std::string* l);
};
@@ -35,7 +35,7 @@ template <>
struct ParamTraits<IndexedDBKey> {
typedef IndexedDBKey param_type;
static void Write(Message* m, const param_type& p);
- static bool Read(const Message* m, void** iter, param_type* r);
+ static bool Read(const Message* m, PickleReader* iter, param_type* r);
static void Log(const param_type& p, std::string* l);
};
@@ -43,7 +43,7 @@ template <>
struct ParamTraits<IndexedDBKeyRange> {
typedef IndexedDBKeyRange param_type;
static void Write(Message* m, const param_type& p);
- static bool Read(const Message* m, void** iter, param_type* r);
+ static bool Read(const Message* m, PickleReader* iter, param_type* r);
static void Log(const param_type& p, std::string* l);
};

Powered by Google App Engine
This is Rietveld 408576698