OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ipc/ipc_test_sink.h" | 5 #include "ipc/ipc_test_sink.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "build/build_config.h" |
7 #include "ipc/ipc_listener.h" | 11 #include "ipc/ipc_listener.h" |
8 #include "ipc/ipc_message.h" | 12 #include "ipc/ipc_message.h" |
9 | 13 |
10 namespace IPC { | 14 namespace IPC { |
11 | 15 |
12 TestSink::TestSink() { | 16 TestSink::TestSink() { |
13 } | 17 } |
14 | 18 |
15 TestSink::~TestSink() { | 19 TestSink::~TestSink() { |
16 } | 20 } |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 } | 105 } |
102 | 106 |
103 base::ScopedFD TestSink::TakeClientFileDescriptor() { | 107 base::ScopedFD TestSink::TakeClientFileDescriptor() { |
104 NOTREACHED(); | 108 NOTREACHED(); |
105 return base::ScopedFD(); | 109 return base::ScopedFD(); |
106 } | 110 } |
107 | 111 |
108 #endif // defined(OS_POSIX) && !defined(OS_NACL) | 112 #endif // defined(OS_POSIX) && !defined(OS_NACL) |
109 | 113 |
110 } // namespace IPC | 114 } // namespace IPC |
OLD | NEW |