| OLD | NEW |
| (Empty) | |
| 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 #include "content/test/content_test_suite_base.h" |
| 6 |
| 7 #include "base/basictypes.h" |
| 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/test/test_suite.h" |
| 11 #include "content/common/url_schemes.h" |
| 12 #include "content/public/common/content_client.h" |
| 13 #include "content/public/common/content_paths.h" |
| 14 #include "ui/base/ui_base_paths.h" |
| 15 #include "ui/compositor/compositor_setup.h" |
| 16 |
| 17 namespace content { |
| 18 |
| 19 ContentTestSuiteBase::ContentTestSuiteBase(int argc, char** argv) |
| 20 : base::TestSuite(argc, argv) { |
| 21 } |
| 22 |
| 23 void ContentTestSuiteBase::Initialize() { |
| 24 base::TestSuite::Initialize(); |
| 25 |
| 26 scoped_ptr<ContentClient> client_for_init(CreateClientForInitialization()); |
| 27 SetContentClient(client_for_init.get()); |
| 28 RegisterContentSchemes(false); |
| 29 SetContentClient(NULL); |
| 30 |
| 31 RegisterPathProvider(); |
| 32 ui::RegisterPathProvider(); |
| 33 |
| 34 // Mock out the compositor on platforms that use it. |
| 35 ui::SetupTestCompositor(); |
| 36 } |
| 37 |
| 38 } // namespace content |
| OLD | NEW |