// Copyright 2013 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/task_graph_work_queue.h" #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" namespace cc { namespace { class FakeTaskImpl : public Task { … }; TEST(TaskGraphWorkQueueTest, TestChangingDependency) { … } // Tasks with same priority but in different category. TEST(TaskGraphWorkQueueTest, TestTaskWithDifferentCategory) { … } // Tasks with different priority run in a priority order. But need to guarantee // its dependences are completed. TEST(TaskGraphWorkQueueTest, TestTaskWithDifferentPriority) { … } } // namespace } // namespace cc