OLD | NEW |
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 CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ |
6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ | 6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ |
7 | 7 |
8 #include "base/shared_memory.h" | 8 #include "base/shared_memory.h" |
9 #include "base/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "content/public/renderer/render_thread.h" | 10 #include "content/public/renderer/render_thread.h" |
11 #include "ipc/ipc_test_sink.h" | 11 #include "ipc/ipc_test_sink.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
13 | 13 |
14 struct ViewHostMsg_CreateWindow_Params; | 14 struct ViewHostMsg_CreateWindow_Params; |
15 | 15 |
16 namespace IPC { | 16 namespace IPC { |
17 class MessageReplyDeserializer; | 17 class MessageReplyDeserializer; |
18 } | 18 } |
19 | 19 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 // The last known good deserializer for sync messages. | 152 // The last known good deserializer for sync messages. |
153 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_; | 153 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_; |
154 | 154 |
155 // A list of message filters added to this thread. | 155 // A list of message filters added to this thread. |
156 std::vector<scoped_refptr<IPC::ChannelProxy::MessageFilter> > filters_; | 156 std::vector<scoped_refptr<IPC::ChannelProxy::MessageFilter> > filters_; |
157 }; | 157 }; |
158 | 158 |
159 } // namespace content | 159 } // namespace content |
160 | 160 |
161 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ | 161 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ |
OLD | NEW |