| Index: remoting/host/linux/audio_pipe_reader.cc
|
| diff --git a/remoting/host/linux/audio_pipe_reader.cc b/remoting/host/linux/audio_pipe_reader.cc
|
| index 691e78bb9c71d4f2166bd246e39f1a5bc6c590c2..c8d090ec0a96a302bca5fbb7af529385363a25e0 100644
|
| --- a/remoting/host/linux/audio_pipe_reader.cc
|
| +++ b/remoting/host/linux/audio_pipe_reader.cc
|
| @@ -161,8 +161,8 @@ void AudioPipeReader::DoCapture() {
|
| data.resize(pos + bytes_to_read);
|
|
|
| while (pos < data.size()) {
|
| - int read_result =
|
| - pipe_.ReadAtCurrentPos(string_as_array(&data) + pos, data.size() - pos);
|
| + int read_result = pipe_.ReadAtCurrentPos(base::string_as_array(&data) + pos,
|
| + data.size() - pos);
|
| if (read_result > 0) {
|
| pos += read_result;
|
| } else {
|
|
|