| 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/single_thread_task_runner.h" |
| 13 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 14 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 15 #include "cc/test/test_shared_bitmap_manager.h" | 16 #include "cc/test/test_shared_bitmap_manager.h" |
| 16 #include "content/public/renderer/render_thread.h" | 17 #include "content/public/renderer/render_thread.h" |
| 17 #include "ipc/ipc_test_sink.h" | 18 #include "ipc/ipc_test_sink.h" |
| 18 #include "ipc/message_filter.h" | 19 #include "ipc/message_filter.h" |
| 19 #include "services/service_manager/public/interfaces/connector.mojom.h" | 20 #include "services/service_manager/public/interfaces/connector.mojom.h" |
| 20 #include "third_party/WebKit/public/web/WebPopupType.h" | 21 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 21 | 22 |
| 22 struct FrameHostMsg_CreateChildFrame_Params; | 23 struct FrameHostMsg_CreateChildFrame_Params; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 cc::TestSharedBitmapManager shared_bitmap_manager_; | 168 cc::TestSharedBitmapManager shared_bitmap_manager_; |
| 168 std::unique_ptr<service_manager::Connector> connector_; | 169 std::unique_ptr<service_manager::Connector> connector_; |
| 169 service_manager::mojom::ConnectorRequest pending_connector_request_; | 170 service_manager::mojom::ConnectorRequest pending_connector_request_; |
| 170 | 171 |
| 171 std::unique_ptr<mojom::RenderMessageFilter> mock_render_message_filter_; | 172 std::unique_ptr<mojom::RenderMessageFilter> mock_render_message_filter_; |
| 172 }; | 173 }; |
| 173 | 174 |
| 174 } // namespace content | 175 } // namespace content |
| 175 | 176 |
| 176 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ | 177 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ |
| OLD | NEW |