Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6174)

Unified Diff: cc/test/cc_test_suite.h

Issue 11412289: Basic pixel tests for cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix AtExitManager registration stuff Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/DEPS ('k') | cc/test/cc_test_suite.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « cc/test/DEPS ('k') | cc/test/cc_test_suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698