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

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

Issue 10383298: Move RegisterContentSchemes from public url_constants into non-public url_schemes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pull common test initialization out into ContentTestSuiteBase Created 8 years, 7 months 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
OLDNEW
(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"
jam 2012/05/24 19:49:26 not needed?
grt (UTC plus 2) 2012/05/24 20:33:14 This is where RegisterContentSchemes lives.
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698