| Index: sync/internal_api/protocol_event_buffer.cc
|
| diff --git a/sync/internal_api/protocol_event_buffer.cc b/sync/internal_api/protocol_event_buffer.cc
|
| index 3d76bd97b1c41a22868c7f44b94a662378885384..512921eafd1d807c05a14e2c3c2eff566be180f4 100644
|
| --- a/sync/internal_api/protocol_event_buffer.cc
|
| +++ b/sync/internal_api/protocol_event_buffer.cc
|
| @@ -29,9 +29,9 @@ ProtocolEventBuffer::GetBufferedProtocolEvents() const {
|
| ScopedVector<ProtocolEvent> ret;
|
| for (std::deque<ProtocolEvent*>::const_iterator it = buffer_.begin();
|
| it != buffer_.end(); ++it) {
|
| - ret.push_back((*it)->Clone().Pass());
|
| + ret.push_back((*it)->Clone());
|
| }
|
| - return ret.Pass();
|
| + return ret;
|
| }
|
|
|
| } // namespace syncer
|
|
|