| 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/browser/browser_main_loop.h" | 5 #include "content/browser/browser_main_loop.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "content/browser/device_orientation/device_inertial_sensor_service.h" | 27 #include "content/browser/device_orientation/device_inertial_sensor_service.h" |
| 28 #include "content/browser/download/save_file_manager.h" | 28 #include "content/browser/download/save_file_manager.h" |
| 29 #include "content/browser/gamepad/gamepad_service.h" | 29 #include "content/browser/gamepad/gamepad_service.h" |
| 30 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" | 30 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" |
| 31 #include "content/browser/gpu/compositor_util.h" | 31 #include "content/browser/gpu/compositor_util.h" |
| 32 #include "content/browser/gpu/gpu_data_manager_impl.h" | 32 #include "content/browser/gpu/gpu_data_manager_impl.h" |
| 33 #include "content/browser/gpu/gpu_process_host.h" | 33 #include "content/browser/gpu/gpu_process_host.h" |
| 34 #include "content/browser/gpu/gpu_process_host_ui_shim.h" | 34 #include "content/browser/gpu/gpu_process_host_ui_shim.h" |
| 35 #include "content/browser/histogram_synchronizer.h" | 35 #include "content/browser/histogram_synchronizer.h" |
| 36 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 36 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
| 37 #include "content/browser/media/capture/audio_mirroring_manager.h" |
| 37 #include "content/browser/media/media_internals.h" | 38 #include "content/browser/media/media_internals.h" |
| 38 #include "content/browser/net/browser_online_state_observer.h" | 39 #include "content/browser/net/browser_online_state_observer.h" |
| 39 #include "content/browser/plugin_service_impl.h" | 40 #include "content/browser/plugin_service_impl.h" |
| 40 #include "content/browser/renderer_host/media/audio_mirroring_manager.h" | |
| 41 #include "content/browser/renderer_host/media/media_stream_manager.h" | 41 #include "content/browser/renderer_host/media/media_stream_manager.h" |
| 42 #include "content/browser/renderer_host/render_process_host_impl.h" | 42 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 43 #include "content/browser/speech/speech_recognition_manager_impl.h" | 43 #include "content/browser/speech/speech_recognition_manager_impl.h" |
| 44 #include "content/browser/startup_task_runner.h" | 44 #include "content/browser/startup_task_runner.h" |
| 45 #include "content/browser/webui/content_web_ui_controller_factory.h" | 45 #include "content/browser/webui/content_web_ui_controller_factory.h" |
| 46 #include "content/browser/webui/url_data_manager.h" | 46 #include "content/browser/webui/url_data_manager.h" |
| 47 #include "content/public/browser/browser_main_parts.h" | 47 #include "content/public/browser/browser_main_parts.h" |
| 48 #include "content/public/browser/browser_shutdown.h" | 48 #include "content/public/browser/browser_shutdown.h" |
| 49 #include "content/public/browser/content_browser_client.h" | 49 #include "content/public/browser/content_browser_client.h" |
| 50 #include "content/public/browser/render_process_host.h" | 50 #include "content/public/browser/render_process_host.h" |
| (...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 base::TimeDelta::FromSeconds(delay_secs)); | 1124 base::TimeDelta::FromSeconds(delay_secs)); |
| 1125 } | 1125 } |
| 1126 | 1126 |
| 1127 void BrowserMainLoop::EndStartupTracing(const base::FilePath& trace_file) { | 1127 void BrowserMainLoop::EndStartupTracing(const base::FilePath& trace_file) { |
| 1128 is_tracing_startup_ = false; | 1128 is_tracing_startup_ = false; |
| 1129 TracingController::GetInstance()->DisableRecording( | 1129 TracingController::GetInstance()->DisableRecording( |
| 1130 trace_file, TracingController::TracingFileResultCallback()); | 1130 trace_file, TracingController::TracingFileResultCallback()); |
| 1131 } | 1131 } |
| 1132 | 1132 |
| 1133 } // namespace content | 1133 } // namespace content |
| OLD | NEW |