| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/test/content_test_suite.h" | 5 #include "content/test/content_test_suite.h" |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "content/public/common/content_client.h" | 9 #include "content/public/common/content_client.h" |
| 10 #include "content/public/common/content_paths.h" | 10 #include "content/public/common/content_paths.h" |
| 11 #include "content/public/test/test_content_client_initializer.h" | 11 #include "content/public/test/test_content_client_initializer.h" |
| 12 #include "gpu/config/gpu_util.h" | 12 #include "gpu/config/gpu_util.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 #include "ui/gfx/dpi.h" |
| 15 #if defined(OS_WIN) | |
| 16 #include "ui/gfx/win/dpi.h" | |
| 17 #endif | |
| 18 | 15 |
| 19 #if defined(OS_MACOSX) | 16 #if defined(OS_MACOSX) |
| 20 #include "base/mac/scoped_nsautorelease_pool.h" | 17 #include "base/mac/scoped_nsautorelease_pool.h" |
| 21 #endif | 18 #endif |
| 22 | 19 |
| 23 #if !defined(OS_IOS) | 20 #if !defined(OS_IOS) |
| 24 #include "base/base_switches.h" | 21 #include "base/base_switches.h" |
| 25 #include "base/command_line.h" | 22 #include "base/command_line.h" |
| 26 #include "media/base/media.h" | 23 #include "media/base/media.h" |
| 27 #include "ui/gl/gl_surface.h" | 24 #include "ui/gl/gl_surface.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 58 } | 55 } |
| 59 | 56 |
| 60 ContentTestSuite::~ContentTestSuite() { | 57 ContentTestSuite::~ContentTestSuite() { |
| 61 } | 58 } |
| 62 | 59 |
| 63 void ContentTestSuite::Initialize() { | 60 void ContentTestSuite::Initialize() { |
| 64 #if defined(OS_MACOSX) | 61 #if defined(OS_MACOSX) |
| 65 base::mac::ScopedNSAutoreleasePool autorelease_pool; | 62 base::mac::ScopedNSAutoreleasePool autorelease_pool; |
| 66 #endif | 63 #endif |
| 67 | 64 |
| 68 #if defined(OS_WIN) | 65 #if defined(OS_WIN) || (defined(OS_LINUX) && !defined(OS_CHROMEOS)) |
| 69 gfx::InitDeviceScaleFactor(1.0f); | 66 gfx::InitDeviceScaleFactor(1.0f); |
| 70 #endif | 67 #endif |
| 71 | 68 |
| 72 ContentTestSuiteBase::Initialize(); | 69 ContentTestSuiteBase::Initialize(); |
| 73 { | 70 { |
| 74 ContentClient client; | 71 ContentClient client; |
| 75 ContentTestSuiteBase::RegisterContentSchemes(&client); | 72 ContentTestSuiteBase::RegisterContentSchemes(&client); |
| 76 } | 73 } |
| 77 RegisterPathProvider(); | 74 RegisterPathProvider(); |
| 78 #if !defined(OS_IOS) | 75 #if !defined(OS_IOS) |
| 79 media::InitializeMediaLibraryForTesting(); | 76 media::InitializeMediaLibraryForTesting(); |
| 80 // When running in a child process for Mac sandbox tests, the sandbox exists | 77 // When running in a child process for Mac sandbox tests, the sandbox exists |
| 81 // to initialize GL, so don't do it here. | 78 // to initialize GL, so don't do it here. |
| 82 if (!CommandLine::ForCurrentProcess()->HasSwitch( | 79 if (!CommandLine::ForCurrentProcess()->HasSwitch( |
| 83 switches::kTestChildProcess)) { | 80 switches::kTestChildProcess)) { |
| 84 gfx::GLSurface::InitializeOneOffForTests(); | 81 gfx::GLSurface::InitializeOneOffForTests(); |
| 85 gpu::ApplyGpuDriverBugWorkarounds(CommandLine::ForCurrentProcess()); | 82 gpu::ApplyGpuDriverBugWorkarounds(CommandLine::ForCurrentProcess()); |
| 86 } | 83 } |
| 87 #endif | 84 #endif |
| 88 testing::TestEventListeners& listeners = | 85 testing::TestEventListeners& listeners = |
| 89 testing::UnitTest::GetInstance()->listeners(); | 86 testing::UnitTest::GetInstance()->listeners(); |
| 90 listeners.Append(new TestInitializationListener); | 87 listeners.Append(new TestInitializationListener); |
| 91 } | 88 } |
| 92 | 89 |
| 93 } // namespace content | 90 } // namespace content |
| OLD | NEW |