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

Side by Side Diff: content/test/content_test_suite.cc

Issue 8404041: Revert 107563 - Fix up compositor mocking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_tests.gypi ('k') | ui/aura/aura.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Deleted: svn:mergeinfo
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "content/browser/mock_content_browser_client.h" 9 #include "content/browser/mock_content_browser_client.h"
10 #include "content/browser/notification_service_impl.h" 10 #include "content/browser/notification_service_impl.h"
11 #include "content/public/common/content_client.h" 11 #include "content/public/common/content_client.h"
12 #include "content/public/common/content_paths.h" 12 #include "content/public/common/content_paths.h"
13 #include "content/test/test_content_client.h" 13 #include "content/test/test_content_client.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "ui/base/ui_base_paths.h" 15 #include "ui/base/ui_base_paths.h"
16 #include "ui/gfx/test/gfx_test_utils.h" 16 #include "ui/gfx/compositor/compositor_test_support.h"
17 17
18 namespace { 18 namespace {
19 19
20 class TestContentClientInitializer : public testing::EmptyTestEventListener { 20 class TestContentClientInitializer : public testing::EmptyTestEventListener {
21 public: 21 public:
22 TestContentClientInitializer() { 22 TestContentClientInitializer() {
23 } 23 }
24 24
25 virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE { 25 virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
26 notification_service_.reset(new NotificationServiceImpl()); 26 notification_service_.reset(new NotificationServiceImpl());
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 ContentTestSuite::~ContentTestSuite() { 60 ContentTestSuite::~ContentTestSuite() {
61 } 61 }
62 62
63 void ContentTestSuite::Initialize() { 63 void ContentTestSuite::Initialize() {
64 base::TestSuite::Initialize(); 64 base::TestSuite::Initialize();
65 65
66 content::RegisterPathProvider(); 66 content::RegisterPathProvider();
67 ui::RegisterPathProvider(); 67 ui::RegisterPathProvider();
68 68
69 // Mock out the compositor on platforms that use it. 69 // Mock out the compositor on platforms that use it.
70 ui::gfx_test_utils::SetupTestCompositor(); 70 ui::CompositorTestSupport::SetupMockCompositor();
71 71
72 testing::TestEventListeners& listeners = 72 testing::TestEventListeners& listeners =
73 testing::UnitTest::GetInstance()->listeners(); 73 testing::UnitTest::GetInstance()->listeners();
74 listeners.Append(new TestContentClientInitializer); 74 listeners.Append(new TestContentClientInitializer);
75 } 75 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | ui/aura/aura.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698