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/public/app/content_main_runner.h" | 5 #include "content/public/app/content_main_runner.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdlib.h> | 8 #include <stdlib.h> |
9 #include <string.h> | 9 #include <string.h> |
10 | 10 |
11 #include <memory> | 11 #include <memory> |
12 #include <string> | 12 #include <string> |
13 #include <utility> | 13 #include <utility> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/allocator/allocator_check.h" | 16 #include "base/allocator/allocator_check.h" |
17 #include "base/allocator/allocator_extension.h" | 17 #include "base/allocator/allocator_extension.h" |
18 #include "base/allocator/features.h" | 18 #include "base/allocator/features.h" |
19 #include "base/at_exit.h" | 19 #include "base/at_exit.h" |
20 #include "base/base_switches.h" | 20 #include "base/base_switches.h" |
21 #include "base/command_line.h" | 21 #include "base/command_line.h" |
22 #include "base/debug/debugger.h" | 22 #include "base/debug/debugger.h" |
23 #include "base/debug/stack_trace.h" | 23 #include "base/debug/stack_trace.h" |
24 #include "base/feature_list.h" | 24 #include "base/feature_list.h" |
25 #include "base/files/file_path.h" | 25 #include "base/files/file_path.h" |
26 #include "base/i18n/icu_util.h" | 26 #include "base/i18n/icu_util.h" |
27 #include "base/lazy_instance.h" | 27 #include "base/lazy_instance.h" |
28 #include "base/logging.h" | 28 #include "base/logging.h" |
29 #include "base/macros.h" | 29 #include "base/macros.h" |
30 #include "base/memory/scoped_vector.h" | |
31 #include "base/metrics/field_trial.h" | 30 #include "base/metrics/field_trial.h" |
32 #include "base/metrics/histogram_base.h" | 31 #include "base/metrics/histogram_base.h" |
33 #include "base/metrics/statistics_recorder.h" | 32 #include "base/metrics/statistics_recorder.h" |
34 #include "base/path_service.h" | 33 #include "base/path_service.h" |
35 #include "base/process/launch.h" | 34 #include "base/process/launch.h" |
36 #include "base/process/memory.h" | 35 #include "base/process/memory.h" |
37 #include "base/process/process.h" | 36 #include "base/process/process.h" |
38 #include "base/process/process_handle.h" | 37 #include "base/process/process_handle.h" |
39 #include "base/profiler/scoped_tracker.h" | 38 #include "base/profiler/scoped_tracker.h" |
40 #include "base/strings/string_number_conversions.h" | 39 #include "base/strings/string_number_conversions.h" |
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
896 | 895 |
897 DISALLOW_COPY_AND_ASSIGN(ContentMainRunnerImpl); | 896 DISALLOW_COPY_AND_ASSIGN(ContentMainRunnerImpl); |
898 }; | 897 }; |
899 | 898 |
900 // static | 899 // static |
901 ContentMainRunner* ContentMainRunner::Create() { | 900 ContentMainRunner* ContentMainRunner::Create() { |
902 return new ContentMainRunnerImpl(); | 901 return new ContentMainRunnerImpl(); |
903 } | 902 } |
904 | 903 |
905 } // namespace content | 904 } // namespace content |
OLD | NEW |