blob: 559b3705aa462909c536f0ffa16090c8a38984eb (
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
52
53
54
55
56
57
58
59
60
61
62
|
// 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.
#ifndef ASH_TEST_ASH_TEST_BASE_H_
#define ASH_TEST_ASH_TEST_BASE_H_
#pragma once
#include <string>
#include "ash/shell.h"
#include "base/compiler_specific.h"
#include "base/message_loop.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/views/test/test_views_delegate.h"
namespace ash {
namespace test {
class AshTestViewsDelegate : public views::TestViewsDelegate {
public:
// Overriden from TestViewsDelegate.
virtual content::WebContents* CreateWebContents(
content::BrowserContext* browser_context,
content::SiteInstance* site_instance) OVERRIDE;
};
class AshTestBase : public testing::Test {
public:
AshTestBase();
virtual ~AshTestBase();
MessageLoopForUI* message_loop() { return &message_loop_; }
// testing::Test:
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
// Change the primary monitor's configuration to use |bounds|
// and |scale|.
void ChangeMonitorConfig(float scale, const gfx::Rect& bounds);
// Update the display configuration as given in |display_specs|. The
// format of |display_spec| is a list of comma separated spec for
// each displays. Please refer to the comment in
// | aura::MonitorManager::CreateMonitorFromSpec| for the format of
// the display spec.
void UpdateMonitor(const std::string& display_specs);
protected:
void RunAllPendingInMessageLoop();
private:
MessageLoopForUI message_loop_;
DISALLOW_COPY_AND_ASSIGN(AshTestBase);
};
} // namespace test
} // namespace ash
#endif // ASH_TEST_ASH_TEST_BASE_H_
|