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

Unified Diff: net/base/io_buffer.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 | « ipc/param_traits_read_macros.h ('k') | net/cert/signed_certificate_timestamp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/io_buffer.h
diff --git a/net/base/io_buffer.h b/net/base/io_buffer.h
index 83f81a8485e0e7a04ce85a6f05e3dec87fe2dbb7..d157963e6f9712d63cce5a985b6e37eb6f98cba6 100644
--- a/net/base/io_buffer.h
+++ b/net/base/io_buffer.h
@@ -225,7 +225,7 @@ class NET_EXPORT PickledIOBuffer : public IOBuffer {
public:
PickledIOBuffer();
- Pickle* pickle() { return &pickle_; }
+ base::Pickle* pickle() { return &pickle_; }
// Signals that we are done writing to the pickle and we can use it for a
// write-style IO operation.
@@ -234,7 +234,7 @@ class NET_EXPORT PickledIOBuffer : public IOBuffer {
private:
~PickledIOBuffer() override;
- Pickle pickle_;
+ base::Pickle pickle_;
};
// This class allows the creation of a temporary IOBuffer that doesn't really
« no previous file with comments | « ipc/param_traits_read_macros.h ('k') | net/cert/signed_certificate_timestamp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698