Home | History | Annotate | Download | only in test
      1 // Copyright (c) 2012 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 #ifndef UI_AURA_TEST_TEST_AURA_INITIALIZER_H_
      6 #define UI_AURA_TEST_TEST_AURA_INITIALIZER_H_
      7 
      8 #include "base/basictypes.h"
      9 
     10 namespace aura {
     11 namespace test {
     12 
     13 // Initializes various objects needed to run unit tests that use aura::*
     14 // objects.
     15 class TestAuraInitializer {
     16  public:
     17   TestAuraInitializer();
     18   virtual ~TestAuraInitializer();
     19 
     20  private:
     21   DISALLOW_COPY_AND_ASSIGN(TestAuraInitializer);
     22 };
     23 
     24 }  // namespace test
     25 }  // namespace aura
     26 
     27 #endif  // UI_AURA_TEST_TEST_AURA_INITIALIZER_H_
     28