blob: ae6653b74e36d0af09d88ab4a0add9ec767dbdc0 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/test/fake_compositor_dependencies.h"
#include <stddef.h>
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_task_runner_handle.h"
#include "cc/test/fake_layer_tree_frame_sink.h"
#include "cc/test/test_ukm_recorder_factory.h"
#include "cc/trees/render_frame_metadata_observer.h"
#include "third_party/khronos/GLES2/gl2.h"
#include "ui/gfx/buffer_types.h"
namespace content {
FakeCompositorDependencies::FakeCompositorDependencies() {
}
FakeCompositorDependencies::~FakeCompositorDependencies() {
}
bool FakeCompositorDependencies::IsUseZoomForDSFEnabled() {
return use_zoom_for_dsf_;
}
blink::scheduler::WebThreadScheduler*
FakeCompositorDependencies::GetWebMainThreadScheduler() {
return &main_thread_scheduler_;
}
cc::TaskGraphRunner* FakeCompositorDependencies::GetTaskGraphRunner() {
return &task_graph_runner_;
}
std::unique_ptr<cc::UkmRecorderFactory>
FakeCompositorDependencies::CreateUkmRecorderFactory() {
return std::make_unique<cc::TestUkmRecorderFactory>();
}
} // namespace content