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 |
| 11 #include <memory> |
10 #include <string> | 12 #include <string> |
11 #include <utility> | 13 #include <utility> |
12 | 14 |
13 #include "base/allocator/allocator_check.h" | 15 #include "base/allocator/allocator_check.h" |
14 #include "base/allocator/allocator_extension.h" | 16 #include "base/allocator/allocator_extension.h" |
15 #include "base/at_exit.h" | 17 #include "base/at_exit.h" |
16 #include "base/command_line.h" | 18 #include "base/command_line.h" |
17 #include "base/debug/debugger.h" | 19 #include "base/debug/debugger.h" |
18 #include "base/debug/stack_trace.h" | 20 #include "base/debug/stack_trace.h" |
19 #include "base/files/file_path.h" | 21 #include "base/files/file_path.h" |
20 #include "base/i18n/icu_util.h" | 22 #include "base/i18n/icu_util.h" |
21 #include "base/lazy_instance.h" | 23 #include "base/lazy_instance.h" |
22 #include "base/logging.h" | 24 #include "base/logging.h" |
23 #include "base/macros.h" | 25 #include "base/macros.h" |
24 #include "base/memory/scoped_ptr.h" | |
25 #include "base/memory/scoped_vector.h" | 26 #include "base/memory/scoped_vector.h" |
26 #include "base/metrics/histogram_base.h" | 27 #include "base/metrics/histogram_base.h" |
27 #include "base/metrics/statistics_recorder.h" | 28 #include "base/metrics/statistics_recorder.h" |
28 #include "base/path_service.h" | 29 #include "base/path_service.h" |
29 #include "base/process/launch.h" | 30 #include "base/process/launch.h" |
30 #include "base/process/memory.h" | 31 #include "base/process/memory.h" |
31 #include "base/process/process_handle.h" | 32 #include "base/process/process_handle.h" |
32 #include "base/profiler/scoped_tracker.h" | 33 #include "base/profiler/scoped_tracker.h" |
33 #include "base/strings/string_number_conversions.h" | 34 #include "base/strings/string_number_conversions.h" |
34 #include "base/strings/string_util.h" | 35 #include "base/strings/string_util.h" |
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 | 780 |
780 // True if basic startup was completed. | 781 // True if basic startup was completed. |
781 bool completed_basic_startup_; | 782 bool completed_basic_startup_; |
782 | 783 |
783 // Used if the embedder doesn't set one. | 784 // Used if the embedder doesn't set one. |
784 ContentClient empty_content_client_; | 785 ContentClient empty_content_client_; |
785 | 786 |
786 // The delegate will outlive this object. | 787 // The delegate will outlive this object. |
787 ContentMainDelegate* delegate_; | 788 ContentMainDelegate* delegate_; |
788 | 789 |
789 scoped_ptr<base::AtExitManager> exit_manager_; | 790 std::unique_ptr<base::AtExitManager> exit_manager_; |
790 #if defined(OS_WIN) | 791 #if defined(OS_WIN) |
791 sandbox::SandboxInterfaceInfo sandbox_info_; | 792 sandbox::SandboxInterfaceInfo sandbox_info_; |
792 #elif defined(OS_MACOSX) | 793 #elif defined(OS_MACOSX) |
793 scoped_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_; | 794 std::unique_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_; |
794 #endif | 795 #endif |
795 | 796 |
796 base::Closure* ui_task_; | 797 base::Closure* ui_task_; |
797 | 798 |
798 DISALLOW_COPY_AND_ASSIGN(ContentMainRunnerImpl); | 799 DISALLOW_COPY_AND_ASSIGN(ContentMainRunnerImpl); |
799 }; | 800 }; |
800 | 801 |
801 // static | 802 // static |
802 ContentMainRunner* ContentMainRunner::Create() { | 803 ContentMainRunner* ContentMainRunner::Create() { |
803 return new ContentMainRunnerImpl(); | 804 return new ContentMainRunnerImpl(); |
804 } | 805 } |
805 | 806 |
806 } // namespace content | 807 } // namespace content |
OLD | NEW |