| 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
|
|
|