// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/raster/tile_task.h" #include <utility> #include "base/check.h" namespace cc { TileTask::TileTask( SupportsConcurrentExecution supports_concurrent_execution, SupportsBackgroundThreadPriority supports_background_thread_priority, TileTask::Vector* dependencies) : … { … } TileTask::~TileTask() { … } void TileTask::DidComplete() { … } bool TileTask::HasCompleted() const { … } bool TileTask::TaskContainsLCPCandidateImages() const { … } } // namespace cc