OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <string> | 5 #include <string> |
6 | 6 |
7 #include "remoting/base/multiple_array_input_stream.h" | 7 #include "remoting/base/multiple_array_input_stream.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 | 9 |
10 namespace remoting { | 10 namespace remoting { |
11 | 11 |
12 static int ReadFromInput(MultipleArrayInputStream* input, | 12 static size_t ReadFromInput(MultipleArrayInputStream* input, |
13 void* data, int size) { | 13 void* data, size_t size) { |
14 uint8* out = reinterpret_cast<uint8*>(data); | 14 uint8* out = reinterpret_cast<uint8*>(data); |
15 int out_size = size; | 15 int out_size = size; |
16 | 16 |
17 const void* in; | 17 const void* in; |
18 int in_size = 0; | 18 int in_size = 0; |
19 | 19 |
20 while (true) { | 20 while (true) { |
21 if (!input->Next(&in, &in_size)) { | 21 if (!input->Next(&in, &in_size)) { |
22 return size - out_size; | 22 return size - out_size; |
23 } | 23 } |
(...skipping 61 matching lines...) Loading... |
85 ReadString(stream.get(), "MultipleArrayInput"); | 85 ReadString(stream.get(), "MultipleArrayInput"); |
86 EXPECT_TRUE(stream->Skip(6)); | 86 EXPECT_TRUE(stream->Skip(6)); |
87 ReadString(stream.get(), "f"); | 87 ReadString(stream.get(), "f"); |
88 ReadString(stream.get(), "o"); | 88 ReadString(stream.get(), "o"); |
89 ReadString(stream.get(), "r"); | 89 ReadString(stream.get(), "r"); |
90 ReadString(stream.get(), " "); | 90 ReadString(stream.get(), " "); |
91 ReadString(stream.get(), "Chromoting"); | 91 ReadString(stream.get(), "Chromoting"); |
92 } | 92 } |
93 | 93 |
94 } // namespace remoting | 94 } // namespace remoting |
OLD | NEW |