| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include "cc/scheduler/begin_frame_source.h" | 7 #include "cc/scheduler/begin_frame_source.h" |
| 8 #include "cc/surfaces/framesink_manager_client.h" | 8 #include "cc/surfaces/frame_sink_manager_client.h" |
| 9 #include "cc/surfaces/surface_factory_client.h" | 9 #include "cc/surfaces/surface_factory_client.h" |
| 10 #include "cc/surfaces/surface_manager.h" | 10 #include "cc/surfaces/surface_manager.h" |
| 11 #include "cc/surfaces/surface_resource_holder_client.h" | 11 #include "cc/surfaces/surface_resource_holder_client.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 namespace cc { | 14 namespace cc { |
| 15 | 15 |
| 16 class FakeFrameSinkManagerClient : public FrameSinkManagerClient { | 16 class FakeFrameSinkManagerClient : public FrameSinkManagerClient { |
| 17 public: | 17 public: |
| 18 explicit FakeFrameSinkManagerClient(const FrameSinkId& frame_sink_id) | 18 explicit FakeFrameSinkManagerClient(const FrameSinkId& frame_sink_id) |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 } | 444 } |
| 445 | 445 |
| 446 INSTANTIATE_TEST_CASE_P( | 446 INSTANTIATE_TEST_CASE_P( |
| 447 SurfaceManagerOrderingParamTestInstantiation, | 447 SurfaceManagerOrderingParamTestInstantiation, |
| 448 SurfaceManagerOrderingParamTest, | 448 SurfaceManagerOrderingParamTest, |
| 449 ::testing::Combine(::testing::ValuesIn(kRegisterOrderList), | 449 ::testing::Combine(::testing::ValuesIn(kRegisterOrderList), |
| 450 ::testing::ValuesIn(kUnregisterOrderList), | 450 ::testing::ValuesIn(kUnregisterOrderList), |
| 451 ::testing::ValuesIn(kBFSOrderList))); | 451 ::testing::ValuesIn(kBFSOrderList))); |
| 452 | 452 |
| 453 } // namespace cc | 453 } // namespace cc |
| OLD | NEW |