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

Unified Diff: net/disk_cache/simple/simple_index.h

Issue 1149113006: Move Pickle to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « net/cert/x509_util_nss.h ('k') | net/disk_cache/simple/simple_index_file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/simple/simple_index.h
diff --git a/net/disk_cache/simple/simple_index.h b/net/disk_cache/simple/simple_index.h
index 099d7fdb80c5ce6869ee2654497572209611b29a..5135c2b3723a2c831bf334e560db65bb383c1992 100644
--- a/net/disk_cache/simple/simple_index.h
+++ b/net/disk_cache/simple/simple_index.h
@@ -28,8 +28,10 @@
#include "base/android/application_status_listener.h"
#endif
+namespace base {
class Pickle;
class PickleIterator;
+}
namespace disk_cache {
@@ -49,8 +51,8 @@ class NET_EXPORT_PRIVATE EntryMetadata {
void SetEntrySize(uint64 entry_size);
// Serialize the data into the provided pickle.
- void Serialize(Pickle* pickle) const;
- bool Deserialize(PickleIterator* it);
+ void Serialize(base::Pickle* pickle) const;
+ bool Deserialize(base::PickleIterator* it);
static base::TimeDelta GetLowerEpsilonForTimeComparisons() {
return base::TimeDelta::FromSeconds(1);
« no previous file with comments | « net/cert/x509_util_nss.h ('k') | net/disk_cache/simple/simple_index_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698