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

Side by Side Diff: ipc/ipc_test_sink.cc

Issue 1546533002: Switch to standard integer types in ipc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « ipc/ipc_test_sink.h ('k') | ipc/mach_port_attachment_mac.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) 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
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
OLDNEW
« no previous file with comments | « ipc/ipc_test_sink.h ('k') | ipc/mach_port_attachment_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698