blob: c5623303f52058af455c9979da96e3929c54af3b (
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
|
// Copyright (c) 2012 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 "ash/test/ash_test_base.h"
#include "ash/shell.h"
#include "ash/test/test_shell_delegate.h"
#include "ui/aura/root_window.h"
#include "ui/gfx/compositor/layer_animator.h"
namespace ash {
namespace test {
AshTestBase::AshTestBase() {
helper_.InitRootWindow(Shell::GetRootWindow());
}
AshTestBase::~AshTestBase() {
// Ensure that we don't use the previously-allocated static RootWindow object
// later -- on Linux, it holds a reference to our message loop's X connection.
aura::RootWindow::DeleteInstance();
}
void AshTestBase::SetUp() {
helper_.SetUp();
// Creates Shell and hook with Desktop.
ash::Shell::CreateInstance(new TestShellDelegate);
// Disable animations during tests.
ui::LayerAnimator::set_disable_animations_for_test(true);
}
void AshTestBase::TearDown() {
// Flush the message loop to finish pending release tasks.
RunAllPendingInMessageLoop();
// Tear down the shell.
Shell::DeleteInstance();
helper_.TearDown();
}
void AshTestBase::RunAllPendingInMessageLoop() {
helper_.RunAllPendingInMessageLoop(Shell::GetRootWindow());
}
} // namespace test
} // namespace ash
|