summaryrefslogtreecommitdiffstats
path: root/ui/aura/test/test_aura_initializer.h
blob: bfbfe2f320d20a0739bdece34182fd9b43b65deb (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
// 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 UI_AURA_TEST_TEST_AURA_INITIALIZER_H_
#define UI_AURA_TEST_TEST_AURA_INITIALIZER_H_

#include "base/basictypes.h"

namespace aura {
namespace test {

// Initializes various objects needed to run unit tests that use aura::*
// objects.
class TestAuraInitializer {
 public:
  TestAuraInitializer();
  virtual ~TestAuraInitializer();

 private:
  DISALLOW_COPY_AND_ASSIGN(TestAuraInitializer);
};

}  // namespace test
}  // namespace aura

#endif  // UI_AURA_TEST_TEST_AURA_INITIALIZER_H_