| Index: content/browser/compositor/software_browser_compositor_output_surface.cc
|
| diff --git a/content/browser/compositor/software_browser_compositor_output_surface.cc b/content/browser/compositor/software_browser_compositor_output_surface.cc
|
| index 23a7f7604f21bdb6a1179a26af4fb4c933c1ba64..14e78eb5f15240a1b82c117857e53c8b35794451 100644
|
| --- a/content/browser/compositor/software_browser_compositor_output_surface.cc
|
| +++ b/content/browser/compositor/software_browser_compositor_output_surface.cc
|
| @@ -8,7 +8,6 @@
|
|
|
| #include "base/location.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/single_thread_task_runner.h"
|
| #include "base/threading/thread_task_runner_handle.h"
|
| #include "base/time/time.h"
|
| #include "build/build_config.h"
|
| @@ -24,10 +23,10 @@ namespace content {
|
| SoftwareBrowserCompositorOutputSurface::SoftwareBrowserCompositorOutputSurface(
|
| std::unique_ptr<cc::SoftwareOutputDevice> software_device,
|
| const scoped_refptr<ui::CompositorVSyncManager>& vsync_manager,
|
| - base::SingleThreadTaskRunner* task_runner)
|
| + cc::SyntheticBeginFrameSource* begin_frame_source)
|
| : BrowserCompositorOutputSurface(std::move(software_device),
|
| vsync_manager,
|
| - task_runner),
|
| + begin_frame_source),
|
| weak_factory_(this) {}
|
|
|
| SoftwareBrowserCompositorOutputSurface::
|
|
|