Index: content/test/layouttest_support.cc |
diff --git a/content/test/layouttest_support.cc b/content/test/layouttest_support.cc |
index cf56a43f133ba05856ccf1b10e5ef402fa5784e6..47ba762c662c13d0078d99905f5751b04a00499e 100644 |
--- a/content/test/layouttest_support.cc |
+++ b/content/test/layouttest_support.cc |
@@ -13,7 +13,6 @@ |
#include "base/strings/string_util.h" |
#include "build/build_config.h" |
#include "cc/test/pixel_test_delegating_output_surface.h" |
-#include "components/scheduler/test/renderer_scheduler_test_support.h" |
#include "components/test_runner/test_common.h" |
#include "components/test_runner/web_frame_test_proxy.h" |
#include "components/test_runner/web_test_proxy.h" |
@@ -40,6 +39,7 @@ |
#include "third_party/WebKit/public/platform/WebGamepads.h" |
#include "third_party/WebKit/public/platform/modules/device_orientation/WebDeviceMotionData.h" |
#include "third_party/WebKit/public/platform/modules/device_orientation/WebDeviceOrientationData.h" |
+#include "third_party/WebKit/public/platform/scheduler/test/renderer_scheduler_test_support.h" |
#include "third_party/WebKit/public/web/WebHistoryItem.h" |
#include "third_party/WebKit/public/web/WebView.h" |
@@ -494,9 +494,9 @@ std::string DumpBackForwardList(std::vector<PageState>& page_state, |
} |
void SchedulerRunIdleTasks(const base::Closure& callback) { |
- scheduler::RendererScheduler* scheduler = |
- content::RenderThreadImpl::current()->GetRendererScheduler(); |
- scheduler::RunIdleTasksForTesting(scheduler, callback); |
+ blink::scheduler::RendererScheduler* scheduler = |
+ content::RenderThreadImpl::current()->GetRendererScheduler(); |
+ blink::scheduler::RunIdleTasksForTesting(scheduler, callback); |
} |
} // namespace content |