| Index: remoting/protocol/message_decoder_unittest.cc
|
| diff --git a/remoting/protocol/message_decoder_unittest.cc b/remoting/protocol/message_decoder_unittest.cc
|
| index 24e89f46ce62ad71f7c79d223b01bb316379fd91..1926cecbb8cecf8f74ed5aefad3b4bad7e7eb5a6 100644
|
| --- a/remoting/protocol/message_decoder_unittest.cc
|
| +++ b/remoting/protocol/message_decoder_unittest.cc
|
| @@ -50,7 +50,7 @@ void SimulateReadSequence(const int read_sequence[], int sequence_size) {
|
| int size;
|
| uint8* test_data;
|
| PrepareData(&test_data, &size);
|
| - scoped_array<uint8> memory_deleter(test_data);
|
| + scoped_ptr<uint8[]> memory_deleter(test_data);
|
|
|
| // Then simulate using MessageDecoder to decode variable
|
| // size of encoded data.
|
|
|