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

Side by Side Diff: ipc/ipc_channel.h

Issue 10451068: Fixing gcc 4.7 building problems. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
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 #ifndef IPC_IPC_CHANNEL_H_ 5 #ifndef IPC_IPC_CHANNEL_H_
6 #define IPC_IPC_CHANNEL_H_ 6 #define IPC_IPC_CHANNEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <sys/types.h>
agl 2012/05/29 18:33:22 Wrap with #if defined(OS_POSIX)?
Han 2012/05/29 18:42:34 Done.
10 11
11 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
12 #include "base/process.h" 13 #include "base/process.h"
13 #include "ipc/ipc_channel_handle.h" 14 #include "ipc/ipc_channel_handle.h"
14 #include "ipc/ipc_message.h" 15 #include "ipc/ipc_message.h"
15 16
16 namespace IPC { 17 namespace IPC {
17 18
18 //------------------------------------------------------------------------------ 19 //------------------------------------------------------------------------------
19 // See 20 // See
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 223
223 private: 224 private:
224 // PIMPL to which all channel calls are delegated. 225 // PIMPL to which all channel calls are delegated.
225 class ChannelImpl; 226 class ChannelImpl;
226 ChannelImpl *channel_impl_; 227 ChannelImpl *channel_impl_;
227 }; 228 };
228 229
229 } // namespace IPC 230 } // namespace IPC
230 231
231 #endif // IPC_IPC_CHANNEL_H_ 232 #endif // IPC_IPC_CHANNEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698