| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include "base/memory/shared_memory.h" | 11 #include "base/memory/shared_memory.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "cc/test/test_shared_bitmap_manager.h" | 15 #include "cc/test/test_shared_bitmap_manager.h" |
| 16 #include "content/public/renderer/render_thread.h" | 16 #include "content/public/renderer/render_thread.h" |
| 17 #include "ipc/ipc_test_sink.h" | 17 #include "ipc/ipc_test_sink.h" |
| 18 #include "ipc/message_filter.h" | 18 #include "ipc/message_filter.h" |
| 19 #include "services/shell/public/interfaces/interface_provider.mojom.h" | 19 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" |
| 20 #include "third_party/WebKit/public/web/WebPopupType.h" | 20 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 21 | 21 |
| 22 struct FrameHostMsg_CreateChildFrame_Params; | 22 struct FrameHostMsg_CreateChildFrame_Params; |
| 23 | 23 |
| 24 namespace IPC { | 24 namespace IPC { |
| 25 class MessageFilter; | 25 class MessageFilter; |
| 26 class MessageReplyDeserializer; | 26 class MessageReplyDeserializer; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace blink { | 29 namespace blink { |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 std::unique_ptr<shell::InterfaceProvider> remote_interfaces_; | 167 std::unique_ptr<shell::InterfaceProvider> remote_interfaces_; |
| 168 shell::mojom::InterfaceProviderRequest | 168 shell::mojom::InterfaceProviderRequest |
| 169 pending_remote_interface_provider_request_; | 169 pending_remote_interface_provider_request_; |
| 170 | 170 |
| 171 std::unique_ptr<mojom::RenderMessageFilter> mock_render_message_filter_; | 171 std::unique_ptr<mojom::RenderMessageFilter> mock_render_message_filter_; |
| 172 }; | 172 }; |
| 173 | 173 |
| 174 } // namespace content | 174 } // namespace content |
| 175 | 175 |
| 176 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ | 176 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ |
| OLD | NEW |