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 "ui/compositor/test/fake_compositor_lock.h" |
| 6 |
| 7 namespace ui { |
| 8 |
| 9 FakeCompositorLock::FakeCompositorLock(CompositorLockClient* client, |
| 10 CompositorLockDelegate* delegate, |
| 11 base::SequencedTaskRunner* task_runner, |
| 12 base::TimeDelta timeout) |
| 13 : CompositorLock(client, delegate, task_runner, timeout) {} |
| 14 |
| 15 } // namespace |
OLD | NEW |