diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-07 08:52:03 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-07 08:52:03 +0000 |
commit | 1b901a3348e02376b2cd95f52cf86cc0787c63c6 (patch) | |
tree | e1b3fed2484988ebf7a7302b5fe89792215f418f /cc/test/cc_test_suite.h | |
parent | 82a5c3c0c0bc28dd0fa1ff1a8dab7c6c383b3c49 (diff) | |
download | chromium_src-1b901a3348e02376b2cd95f52cf86cc0787c63c6.zip chromium_src-1b901a3348e02376b2cd95f52cf86cc0787c63c6.tar.gz chromium_src-1b901a3348e02376b2cd95f52cf86cc0787c63c6.tar.bz2 |
Basic pixel tests for cc
BUG=
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=171544
Review URL: https://chromiumcodereview.appspot.com/11412289
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171735 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/cc_test_suite.h')
-rw-r--r-- | cc/test/cc_test_suite.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cc/test/cc_test_suite.h b/cc/test/cc_test_suite.h new file mode 100644 index 0000000..5cdf958 --- /dev/null +++ b/cc/test/cc_test_suite.h @@ -0,0 +1,36 @@ +// 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 CC_TEST_CC_TEST_SUITE_H_ +#define CC_TEST_CC_TEST_SUITE_H_ + +#include "base/compiler_specific.h" +#include "base/memory/scoped_ptr.h" +#include "base/test/test_suite.h" + +class MessageLoop; + +namespace cc { +namespace test { + +class CCTestSuite : public base::TestSuite { + public: + CCTestSuite(int argc, char** argv); + virtual ~CCTestSuite(); + + protected: + // Overridden from base::TestSuite: + virtual void Initialize() OVERRIDE; + virtual void Shutdown() OVERRIDE; + + private: + scoped_ptr<MessageLoop> message_loop_; + + DISALLOW_COPY_AND_ASSIGN(CCTestSuite); +}; + +} // namespace test +} // namespace cc + +#endif // CC_TEST_CC_TEST_SUITE_H_ |