| 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 #include "content/public/test/layouttest_support.h" | 5 #include "content/public/test/layouttest_support.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
| 12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "components/scheduler/test/renderer_scheduler_test_support.h" |
| 14 #include "components/test_runner/test_common.h" | 15 #include "components/test_runner/test_common.h" |
| 15 #include "components/test_runner/web_frame_test_proxy.h" | 16 #include "components/test_runner/web_frame_test_proxy.h" |
| 16 #include "components/test_runner/web_test_proxy.h" | 17 #include "components/test_runner/web_test_proxy.h" |
| 17 #include "content/browser/bluetooth/bluetooth_dispatcher_host.h" | 18 #include "content/browser/bluetooth/bluetooth_dispatcher_host.h" |
| 18 #include "content/browser/renderer_host/render_process_host_impl.h" | 19 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 19 #include "content/browser/renderer_host/render_widget_host_impl.h" | 20 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 20 #include "content/child/geofencing/web_geofencing_provider_impl.h" | 21 #include "content/child/geofencing/web_geofencing_provider_impl.h" |
| 21 #include "content/common/gpu/image_transport_surface.h" | 22 #include "content/common/gpu/image_transport_surface.h" |
| 22 #include "content/common/site_isolation_policy.h" | 23 #include "content/common/site_isolation_policy.h" |
| 23 #include "content/public/common/page_state.h" | 24 #include "content/public/common/page_state.h" |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 PageStateToHistoryEntry(page_state[index])); | 450 PageStateToHistoryEntry(page_state[index])); |
| 450 result.append( | 451 result.append( |
| 451 DumpHistoryItem(entry->root_history_node(), | 452 DumpHistoryItem(entry->root_history_node(), |
| 452 8, | 453 8, |
| 453 index == current_index)); | 454 index == current_index)); |
| 454 } | 455 } |
| 455 result.append("===============================================\n"); | 456 result.append("===============================================\n"); |
| 456 return result; | 457 return result; |
| 457 } | 458 } |
| 458 | 459 |
| 460 void SchedulerRunIdleTasks(const base::Closure& callback) { |
| 461 scheduler::RendererScheduler* scheduler = |
| 462 content::RenderThreadImpl::current()->GetRendererScheduler(); |
| 463 scheduler::RunIdleTasksForTesting(scheduler, callback); |
| 464 } |
| 465 |
| 459 } // namespace content | 466 } // namespace content |
| OLD | NEW |