| Index: net/base/io_buffer.h
|
| diff --git a/net/base/io_buffer.h b/net/base/io_buffer.h
|
| index 04bbc883e97d83fde2f6f259fa2bd738faebfe79..6ba4c0afb0ea3f4aee5b11522c7cd8c97c6f3e71 100644
|
| --- a/net/base/io_buffer.h
|
| +++ b/net/base/io_buffer.h
|
| @@ -215,7 +215,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.
|
| @@ -224,7 +224,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
|
|
|