| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "mojo/edk/embedder/platform_channel_pair.h" | 5 #include "mojo/edk/embedder/platform_channel_pair.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <poll.h> | 8 #include <poll.h> |
| 9 #include <signal.h> | 9 #include <signal.h> |
| 10 #include <stddef.h> |
| 10 #include <stdio.h> | 11 #include <stdio.h> |
| 11 #include <sys/socket.h> | 12 #include <sys/socket.h> |
| 12 #include <sys/types.h> | 13 #include <sys/types.h> |
| 13 #include <sys/uio.h> | 14 #include <sys/uio.h> |
| 14 #include <unistd.h> | 15 #include <unistd.h> |
| 15 #include <deque> | 16 #include <deque> |
| 16 #include <utility> | 17 #include <utility> |
| 17 | 18 |
| 18 #include "base/files/file_path.h" | 19 #include "base/files/file_path.h" |
| 19 #include "base/files/file_util.h" | 20 #include "base/files/file_util.h" |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 char read_buf[100]; | 252 char read_buf[100]; |
| 252 size_t bytes_read = fread(read_buf, 1, sizeof(read_buf), fp.get()); | 253 size_t bytes_read = fread(read_buf, 1, sizeof(read_buf), fp.get()); |
| 253 EXPECT_EQ(file_contents.size(), bytes_read); | 254 EXPECT_EQ(file_contents.size(), bytes_read); |
| 254 EXPECT_EQ(file_contents, std::string(read_buf, bytes_read)); | 255 EXPECT_EQ(file_contents, std::string(read_buf, bytes_read)); |
| 255 } | 256 } |
| 256 } | 257 } |
| 257 | 258 |
| 258 } // namespace | 259 } // namespace |
| 259 } // namespace edk | 260 } // namespace edk |
| 260 } // namespace mojo | 261 } // namespace mojo |
| OLD | NEW |