| Index: base/pickle.cc
|
| diff --git a/base/pickle.cc b/base/pickle.cc
|
| index cfb316c13e56974abc7ffb98fa7e4693e40a7301..4ef167b089161b1b60696757e4c5a0e5dae0fc03 100644
|
| --- a/base/pickle.cc
|
| +++ b/base/pickle.cc
|
| @@ -364,12 +364,12 @@ void Pickle::Reserve(size_t length) {
|
| Resize(capacity_after_header_ * 2 + new_size);
|
| }
|
|
|
| -bool Pickle::WriteAttachment(scoped_refptr<Attachment> attachment) {
|
| +bool Pickle::WriteAttachment(scoped_refptr<Attachment> /*attachment*/) {
|
| return false;
|
| }
|
|
|
| -bool Pickle::ReadAttachment(base::PickleIterator* iter,
|
| - scoped_refptr<Attachment>* attachment) const {
|
| +bool Pickle::ReadAttachment(base::PickleIterator* /*iter*/,
|
| + scoped_refptr<Attachment>* /*attachment*/) const {
|
| return false;
|
| }
|
|
|
|
|