blob: 051c58fe3940f170fecaf437c5af91d165b2972d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// Copyright 2014 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.
#ifndef UI_COMPOSITOR_TEST_DRAW_WAITER_H_
#define UI_COMPOSITOR_TEST_DRAW_WAITER_H_
#include "base/run_loop.h"
#include "ui/compositor/compositor_observer.h"
class Compositor;
namespace ui {
// This is only to be used for test. It allows execution of other tasks on
// the current message loop before the current task finishs (there is a
// potential for re-entrancy).
class DrawWaiterForTest : public CompositorObserver {
public:
// Waits for a draw to be issued by the compositor. If the test times out
// here, there may be a logic error in the compositor code causing it
// not to draw.
static void Wait(Compositor* compositor);
// Waits for a commit instead of a draw.
static void WaitForCommit(Compositor* compositor);
private:
DrawWaiterForTest();
virtual ~DrawWaiterForTest();
void WaitImpl(Compositor* compositor);
// CompositorObserver implementation.
virtual void OnCompositingDidCommit(Compositor* compositor) OVERRIDE;
virtual void OnCompositingStarted(Compositor* compositor,
base::TimeTicks start_time) OVERRIDE;
virtual void OnCompositingEnded(Compositor* compositor) OVERRIDE;
virtual void OnCompositingAborted(Compositor* compositor) OVERRIDE;
virtual void OnCompositingLockStateChanged(Compositor* compositor) OVERRIDE;
scoped_ptr<base::RunLoop> wait_run_loop_;
bool wait_for_commit_;
DISALLOW_COPY_AND_ASSIGN(DrawWaiterForTest);
};
} // namespace ui
#endif // UI_COMPOSITOR_TEST_DRAW_WAITER_H_
|