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

Unified Diff: net/http/http_vary_data.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: net/http/http_vary_data.h
diff --git a/net/http/http_vary_data.h b/net/http/http_vary_data.h
index baa4d881a0643beaf9cddd1fc557d0e3d1e5f128..1acc16c6fe78d9c4cd027d5be46bd9d9e25f5bf6 100644
--- a/net/http/http_vary_data.h
+++ b/net/http/http_vary_data.h
@@ -10,6 +10,7 @@
#include "net/base/net_export.h"
class Pickle;
+class PickleReader;
namespace net {
@@ -52,7 +53,7 @@ class NET_EXPORT_PRIVATE HttpVaryData {
// is_valid() will return true. Otherwise, false is returned to indicate
// that this object is marked as invalid.
//
- bool InitFromPickle(const Pickle& pickle, void** pickle_iter);
+ bool InitFromPickle(const Pickle& pickle, PickleReader* pickle_iter);
// Call this method to persist the vary data. Illegal to call this on an
// invalid object.

Powered by Google App Engine
This is Rietveld 408576698