diff options
author | brettw <brettw@chromium.org> | 2015-06-02 00:02:47 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-02 07:03:21 +0000 |
commit | 05cfd8ddb3849b7e11bb53e199064291a52aeea9 (patch) | |
tree | c197bfdf337bee3b804219251c43e4323ae9a6ae /net/http/http_vary_data.h | |
parent | 7f9715680150b2f0c3ae46a227075859c73042b2 (diff) | |
download | chromium_src-05cfd8ddb3849b7e11bb53e199064291a52aeea9.zip chromium_src-05cfd8ddb3849b7e11bb53e199064291a52aeea9.tar.gz chromium_src-05cfd8ddb3849b7e11bb53e199064291a52aeea9.tar.bz2 |
Move Pickle to base namespace.
Updates forward-declares and headers, but keeps a using statement in to avoid updating all users atomically.
TBR=jschuh for IPC stuff
Review URL: https://codereview.chromium.org/1149113006
Cr-Commit-Position: refs/heads/master@{#332352}
Diffstat (limited to 'net/http/http_vary_data.h')
-rw-r--r-- | net/http/http_vary_data.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/http/http_vary_data.h b/net/http/http_vary_data.h index bc60c1f..5a3c19e 100644 --- a/net/http/http_vary_data.h +++ b/net/http/http_vary_data.h @@ -8,8 +8,10 @@ #include "base/md5.h" #include "net/base/net_export.h" +namespace base { class Pickle; class PickleIterator; +} namespace net { @@ -52,11 +54,11 @@ 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(PickleIterator* pickle_iter); + bool InitFromPickle(base::PickleIterator* pickle_iter); // Call this method to persist the vary data. Illegal to call this on an // invalid object. - void Persist(Pickle* pickle) const; + void Persist(base::Pickle* pickle) const; // Call this method to test if the given request matches the previous request // with which this vary data corresponds. The |cached_response_headers| must |