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

Side by Side Diff: content/app/content_main_runner.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: take RegisterContentSchemes out of public 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
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/public/app/content_main_runner.h" 5 #include "content/public/app/content_main_runner.h"
6 6
7 #include "base/allocator/allocator_extension.h" 7 #include "base/allocator/allocator_extension.h"
8 #include "base/at_exit.h" 8 #include "base/at_exit.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/debug/debugger.h" 10 #include "base/debug/debugger.h"
11 #include "base/debug/trace_event.h" 11 #include "base/debug/trace_event.h"
12 #include "base/file_path.h" 12 #include "base/file_path.h"
13 #include "base/i18n/icu_util.h" 13 #include "base/i18n/icu_util.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/metrics/stats_table.h" 16 #include "base/metrics/stats_table.h"
17 #include "base/path_service.h" 17 #include "base/path_service.h"
18 #include "base/process_util.h" 18 #include "base/process_util.h"
19 #include "base/stringprintf.h" 19 #include "base/stringprintf.h"
20 #include "base/string_number_conversions.h" 20 #include "base/string_number_conversions.h"
21 #include "content/browser/browser_main.h" 21 #include "content/browser/browser_main.h"
22 #include "content/common/set_process_title.h" 22 #include "content/common/set_process_title.h"
23 #include "content/common/url_schemes.h"
23 #include "content/public/app/content_main_delegate.h" 24 #include "content/public/app/content_main_delegate.h"
24 #include "content/public/app/startup_helper_win.h" 25 #include "content/public/app/startup_helper_win.h"
25 #include "content/public/common/content_client.h" 26 #include "content/public/common/content_client.h"
26 #include "content/public/common/content_constants.h" 27 #include "content/public/common/content_constants.h"
27 #include "content/public/common/content_paths.h" 28 #include "content/public/common/content_paths.h"
28 #include "content/public/common/content_switches.h" 29 #include "content/public/common/content_switches.h"
29 #include "content/public/common/main_function_params.h" 30 #include "content/public/common/main_function_params.h"
30 #include "content/public/common/sandbox_init.h" 31 #include "content/public/common/sandbox_init.h"
31 #include "content/public/common/url_constants.h"
32 #include "crypto/nss_util.h" 32 #include "crypto/nss_util.h"
33 #include "ipc/ipc_switches.h" 33 #include "ipc/ipc_switches.h"
34 #include "media/base/media.h" 34 #include "media/base/media.h"
35 #include "sandbox/src/sandbox_types.h" 35 #include "sandbox/src/sandbox_types.h"
36 #include "ui/base/ui_base_switches.h" 36 #include "ui/base/ui_base_switches.h"
37 #include "ui/base/ui_base_paths.h" 37 #include "ui/base/ui_base_paths.h"
38 #include "ui/base/win/dpi.h" 38 #include "ui/base/win/dpi.h"
39 #include "webkit/glue/webkit_glue.h" 39 #include "webkit/glue/webkit_glue.h"
40 40
41 #if defined(USE_TCMALLOC) 41 #if defined(USE_TCMALLOC)
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 } // namespace 631 } // namespace
632 632
633 namespace content { 633 namespace content {
634 634
635 // static 635 // static
636 ContentMainRunner* ContentMainRunner::Create() { 636 ContentMainRunner* ContentMainRunner::Create() {
637 return new ContentMainRunnerImpl(); 637 return new ContentMainRunnerImpl();
638 } 638 }
639 639
640 } // namespace content 640 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698