// 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. #ifndef CC_TEST_FAKE_TILE_TASK_MANAGER_H_ #define CC_TEST_FAKE_TILE_TASK_MANAGER_H_ #include "cc/test/fake_raster_buffer_provider.h" #include "cc/tiles/tile_task_manager.h" namespace cc { // This class immediately cancels the scheduled work, i.e. in ScheduleTasks() // it cancels all the tasks. class FakeTileTaskManagerImpl : public TileTaskManager { … }; } // namespace cc #endif // CC_TEST_FAKE_TILE_TASK_MANAGER_H_