// Copyright 2016 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/test/test_tile_task_runner.h" #include "base/check.h" namespace cc { void TestTileTaskRunner::ProcessTask(TileTask* task) { … } void TestTileTaskRunner::ScheduleTask(TileTask* task) { … } void TestTileTaskRunner::CancelTask(TileTask* task) { … } void TestTileTaskRunner::RunTask(TileTask* task) { … } void TestTileTaskRunner::CompleteTask(TileTask* task) { … } } // namespace cc