Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "cc/test/mock_compositor_frame_sink_support_client.h" | |
| 6 | |
| 7 using testing::Invoke; | |
|
danakj
2017/05/05 19:47:52
not used now
Alex Z.
2017/05/05 19:57:28
Done.
| |
| 8 using testing::_; | |
| 9 | |
| 10 namespace cc { | |
| 11 namespace test { | |
| 12 | |
| 13 MockCompositorFrameSinkSupportClient::MockCompositorFrameSinkSupportClient() = | |
| 14 default; | |
| 15 | |
| 16 MockCompositorFrameSinkSupportClient::~MockCompositorFrameSinkSupportClient() = | |
| 17 default; | |
| 18 | |
| 19 } // namespace test | |
| 20 | |
| 21 } // namespace cc | |
| OLD | NEW |