add a use_alsa gyp setting
[chromium-blink-merge.git] / cc / test / cc_test_suite.cc
blobc9d48b7ee763eec975799c24298ffc99e5d56418
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.
5 #include "cc/test/cc_test_suite.h"
7 #include "base/message_loop.h"
8 #include "cc/test/paths.h"
10 namespace cc {
12 CCTestSuite::CCTestSuite(int argc, char** argv)
13 : base::TestSuite(argc, argv) {}
15 CCTestSuite::~CCTestSuite() {}
17 void CCTestSuite::Initialize() {
18 base::TestSuite::Initialize();
19 RegisterPathProvider();
20 message_loop_.reset(new MessageLoop);
23 void CCTestSuite::Shutdown() {
24 message_loop_.reset();
26 base::TestSuite::Shutdown();
29 } // namespace cc