Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: ipc/ipc_channel_posix_unittest.cc

Issue 1342153003: ipc: Remove basictypes.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ipc/ipc_channel_reader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // These tests are POSIX only. 5 // These tests are POSIX only.
6 6
7 #include "ipc/ipc_channel_posix.h" 7 #include "ipc/ipc_channel_posix.h"
8 8
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <stdint.h> 10 #include <stdint.h>
11 #include <sys/socket.h> 11 #include <sys/socket.h>
12 #include <sys/un.h> 12 #include <sys/un.h>
13 #include <unistd.h> 13 #include <unistd.h>
14 14
15 #include "base/basictypes.h"
16 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
17 #include "base/files/file_util.h" 16 #include "base/files/file_util.h"
18 #include "base/location.h" 17 #include "base/location.h"
19 #include "base/memory/scoped_ptr.h" 18 #include "base/memory/scoped_ptr.h"
20 #include "base/path_service.h" 19 #include "base/path_service.h"
21 #include "base/posix/eintr_wrapper.h" 20 #include "base/posix/eintr_wrapper.h"
22 #include "base/process/process.h" 21 #include "base/process/process.h"
23 #include "base/single_thread_task_runner.h" 22 #include "base/single_thread_task_runner.h"
24 #include "base/test/multiprocess_test.h" 23 #include "base/test/multiprocess_test.h"
25 #include "base/test/test_timeouts.h" 24 #include "base/test/test_timeouts.h"
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 if (connected) { 494 if (connected) {
496 IPCChannelPosixTest::SpinRunLoop(TestTimeouts::action_max_timeout()); 495 IPCChannelPosixTest::SpinRunLoop(TestTimeouts::action_max_timeout());
497 EXPECT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status()); 496 EXPECT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
498 } else { 497 } else {
499 EXPECT_EQ(IPCChannelPosixTestListener::DISCONNECTED, listener.status()); 498 EXPECT_EQ(IPCChannelPosixTestListener::DISCONNECTED, listener.status());
500 } 499 }
501 return 0; 500 return 0;
502 } 501 }
503 502
504 } // namespace 503 } // namespace
OLDNEW
« no previous file with comments | « no previous file | ipc/ipc_channel_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698