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

Side by Side Diff: ipc/ipc_channel_win.h

Issue 2969006: Revert 52336 - More header cleanup:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « chrome/service/service_process.h ('k') | ipc/ipc_sync_channel_unittest.cc » ('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) 2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008 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_WIN_H_ 5 #ifndef IPC_IPC_CHANNEL_WIN_H_
6 #define IPC_IPC_CHANNEL_WIN_H_ 6 #define IPC_IPC_CHANNEL_WIN_H_
7 7
8 #include "ipc/ipc_channel.h" 8 #include "ipc/ipc_channel.h"
9 9
10 #include <queue> 10 #include <queue>
11 #include <string> 11 #include <string>
12 12
13 #include "base/message_loop.h" 13 #include "base/message_loop.h"
14 #include "base/scoped_ptr.h"
15 14
16 class NonThreadSafe; 15 class NonThreadSafe;
17 16
18 namespace IPC { 17 namespace IPC {
19 18
20 class Channel::ChannelImpl : public MessageLoopForIO::IOHandler { 19 class Channel::ChannelImpl : public MessageLoopForIO::IOHandler {
21 public: 20 public:
22 // Mirror methods of Channel, see ipc_channel.h for description. 21 // Mirror methods of Channel, see ipc_channel.h for description.
23 ChannelImpl(const std::string& channel_id, Mode mode, Listener* listener); 22 ChannelImpl(const std::string& channel_id, Mode mode, Listener* listener);
24 ~ChannelImpl() { Close(); } 23 ~ChannelImpl() { Close(); }
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 ScopedRunnableMethodFactory<ChannelImpl> factory_; 76 ScopedRunnableMethodFactory<ChannelImpl> factory_;
78 77
79 scoped_ptr<NonThreadSafe> thread_check_; 78 scoped_ptr<NonThreadSafe> thread_check_;
80 79
81 DISALLOW_COPY_AND_ASSIGN(ChannelImpl); 80 DISALLOW_COPY_AND_ASSIGN(ChannelImpl);
82 }; 81 };
83 82
84 } // namespace IPC 83 } // namespace IPC
85 84
86 #endif // IPC_IPC_CHANNEL_WIN_H_ 85 #endif // IPC_IPC_CHANNEL_WIN_H_
OLDNEW
« no previous file with comments | « chrome/service/service_process.h ('k') | ipc/ipc_sync_channel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698