Chromium Code Reviews| Index: cc/test/mock_compositor_frame_sink_support_client.cc |
| diff --git a/cc/test/mock_compositor_frame_sink_support_client.cc b/cc/test/mock_compositor_frame_sink_support_client.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..289453202d32f55d23fec1945bf3c3fb9be620e5 |
| --- /dev/null |
| +++ b/cc/test/mock_compositor_frame_sink_support_client.cc |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "cc/test/mock_compositor_frame_sink_support_client.h" |
| + |
| +using testing::Invoke; |
|
danakj
2017/05/05 19:47:52
not used now
Alex Z.
2017/05/05 19:57:28
Done.
|
| +using testing::_; |
| + |
| +namespace cc { |
| +namespace test { |
| + |
| +MockCompositorFrameSinkSupportClient::MockCompositorFrameSinkSupportClient() = |
| + default; |
| + |
| +MockCompositorFrameSinkSupportClient::~MockCompositorFrameSinkSupportClient() = |
| + default; |
| + |
| +} // namespace test |
| + |
| +} // namespace cc |