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

Side by Side Diff: ipc/ipc_channel_win.h

Issue 19607005: Use a direct include of the message_loop header in dbus/, device/, extensions/, google_apis/, gpu/,… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « ipc/ipc_channel_unittest.cc ('k') | ipc/ipc_fuzzing_tests.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) 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_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/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "base/message_loop.h" 15 #include "base/message_loop/message_loop.h"
16 #include "ipc/ipc_channel_reader.h" 16 #include "ipc/ipc_channel_reader.h"
17 17
18 namespace base { 18 namespace base {
19 class ThreadChecker; 19 class ThreadChecker;
20 } 20 }
21 21
22 namespace IPC { 22 namespace IPC {
23 23
24 class Channel::ChannelImpl : public internal::ChannelReader, 24 class Channel::ChannelImpl : public internal::ChannelReader,
25 public base::MessageLoopForIO::IOHandler { 25 public base::MessageLoopForIO::IOHandler {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 base::WeakPtrFactory<ChannelImpl> weak_factory_; 97 base::WeakPtrFactory<ChannelImpl> weak_factory_;
98 98
99 scoped_ptr<base::ThreadChecker> thread_check_; 99 scoped_ptr<base::ThreadChecker> thread_check_;
100 100
101 DISALLOW_COPY_AND_ASSIGN(ChannelImpl); 101 DISALLOW_COPY_AND_ASSIGN(ChannelImpl);
102 }; 102 };
103 103
104 } // namespace IPC 104 } // namespace IPC
105 105
106 #endif // IPC_IPC_CHANNEL_WIN_H_ 106 #endif // IPC_IPC_CHANNEL_WIN_H_
OLDNEW
« no previous file with comments | « ipc/ipc_channel_unittest.cc ('k') | ipc/ipc_fuzzing_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698