| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 #include "content/browser/audio_manager_thread.h" | 54 #include "content/browser/audio_manager_thread.h" |
| 55 #include "content/browser/browser_thread_impl.h" | 55 #include "content/browser/browser_thread_impl.h" |
| 56 #include "content/browser/dom_storage/dom_storage_area.h" | 56 #include "content/browser/dom_storage/dom_storage_area.h" |
| 57 #include "content/browser/download/download_resource_handler.h" | 57 #include "content/browser/download/download_resource_handler.h" |
| 58 #include "content/browser/download/save_file_manager.h" | 58 #include "content/browser/download/save_file_manager.h" |
| 59 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" | 59 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" |
| 60 #include "content/browser/gpu/browser_gpu_memory_buffer_manager.h" | 60 #include "content/browser/gpu/browser_gpu_memory_buffer_manager.h" |
| 61 #include "content/browser/gpu/compositor_util.h" | 61 #include "content/browser/gpu/compositor_util.h" |
| 62 #include "content/browser/gpu/gpu_data_manager_impl.h" | 62 #include "content/browser/gpu/gpu_data_manager_impl.h" |
| 63 #include "content/browser/gpu/gpu_process_host.h" | 63 #include "content/browser/gpu/gpu_process_host.h" |
| 64 #include "content/browser/gpu/gpu_process_host_ui_shim.h" | |
| 65 #include "content/browser/gpu/shader_cache_factory.h" | 64 #include "content/browser/gpu/shader_cache_factory.h" |
| 66 #include "content/browser/histogram_synchronizer.h" | 65 #include "content/browser/histogram_synchronizer.h" |
| 67 #include "content/browser/leveldb_wrapper_impl.h" | 66 #include "content/browser/leveldb_wrapper_impl.h" |
| 68 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 67 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
| 69 #include "content/browser/loader_delegate_impl.h" | 68 #include "content/browser/loader_delegate_impl.h" |
| 70 #include "content/browser/media/media_internals.h" | 69 #include "content/browser/media/media_internals.h" |
| 71 #include "content/browser/memory/memory_coordinator_impl.h" | 70 #include "content/browser/memory/memory_coordinator_impl.h" |
| 72 #include "content/browser/net/browser_online_state_observer.h" | 71 #include "content/browser/net/browser_online_state_observer.h" |
| 73 #include "content/browser/renderer_host/media/media_stream_manager.h" | 72 #include "content/browser/renderer_host/media/media_stream_manager.h" |
| 74 #include "content/browser/renderer_host/render_process_host_impl.h" | 73 #include "content/browser/renderer_host/render_process_host_impl.h" |
| (...skipping 1674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1749 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE), | 1748 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE), |
| 1750 MediaInternals::GetInstance()); | 1749 MediaInternals::GetInstance()); |
| 1751 } | 1750 } |
| 1752 CHECK(audio_manager_); | 1751 CHECK(audio_manager_); |
| 1753 | 1752 |
| 1754 audio_system_ = media::AudioSystemImpl::Create(audio_manager_.get()); | 1753 audio_system_ = media::AudioSystemImpl::Create(audio_manager_.get()); |
| 1755 CHECK(audio_system_); | 1754 CHECK(audio_system_); |
| 1756 } | 1755 } |
| 1757 | 1756 |
| 1758 } // namespace content | 1757 } // namespace content |
| OLD | NEW |