| Index: cc/test/cc_test_suite.h
|
| diff --git a/ui/compositor/test/test_suite.h b/cc/test/cc_test_suite.h
|
| similarity index 58%
|
| copy from ui/compositor/test/test_suite.h
|
| copy to cc/test/cc_test_suite.h
|
| index b8be517adcabbfb0d42695da765e0db4d249145f..5cdf958ac180a54ad88d349638f134d74979c91d 100644
|
| --- a/ui/compositor/test/test_suite.h
|
| +++ b/cc/test/cc_test_suite.h
|
| @@ -2,23 +2,22 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef UI_COMPOSITOR_TEST_TEST_SUITE_H_
|
| -#define UI_COMPOSITOR_TEST_TEST_SUITE_H_
|
| +#ifndef CC_TEST_CC_TEST_SUITE_H_
|
| +#define CC_TEST_CC_TEST_SUITE_H_
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/test/test_suite.h"
|
|
|
| class MessageLoop;
|
|
|
| -namespace ui {
|
| +namespace cc {
|
| namespace test {
|
|
|
| -class CompositorTestSuite : public base::TestSuite {
|
| +class CCTestSuite : public base::TestSuite {
|
| public:
|
| - CompositorTestSuite(int argc, char** argv);
|
| - virtual ~CompositorTestSuite();
|
| + CCTestSuite(int argc, char** argv);
|
| + virtual ~CCTestSuite();
|
|
|
| protected:
|
| // Overridden from base::TestSuite:
|
| @@ -28,10 +27,10 @@ class CompositorTestSuite : public base::TestSuite {
|
| private:
|
| scoped_ptr<MessageLoop> message_loop_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(CompositorTestSuite);
|
| + DISALLOW_COPY_AND_ASSIGN(CCTestSuite);
|
| };
|
|
|
| } // namespace test
|
| -} // namespace ui
|
| +} // namespace cc
|
|
|
| -#endif // UI_COMPOSITOR_TEST_TEST_SUITE_H_
|
| +#endif // CC_TEST_CC_TEST_SUITE_H_
|
|
|