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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 #include "media/audio/audio_thread_impl.h" | 97 #include "media/audio/audio_thread_impl.h" |
98 #include "media/base/media.h" | 98 #include "media/base/media.h" |
99 #include "media/base/user_input_monitor.h" | 99 #include "media/base/user_input_monitor.h" |
100 #include "media/midi/midi_service.h" | 100 #include "media/midi/midi_service.h" |
101 #include "mojo/edk/embedder/embedder.h" | 101 #include "mojo/edk/embedder/embedder.h" |
102 #include "mojo/edk/embedder/scoped_ipc_support.h" | 102 #include "mojo/edk/embedder/scoped_ipc_support.h" |
103 #include "net/base/network_change_notifier.h" | 103 #include "net/base/network_change_notifier.h" |
104 #include "net/socket/client_socket_factory.h" | 104 #include "net/socket/client_socket_factory.h" |
105 #include "net/ssl/ssl_config_service.h" | 105 #include "net/ssl/ssl_config_service.h" |
106 #include "ppapi/features/features.h" | 106 #include "ppapi/features/features.h" |
107 #include "services/resource_coordinator/memory/coordinator/coordinator_impl.h" | 107 #include "services/resource_coordinator/memory_instrumentation/coordinator_impl.
h" |
108 #include "services/service_manager/runner/common/client_util.h" | 108 #include "services/service_manager/runner/common/client_util.h" |
109 #include "skia/ext/event_tracer_impl.h" | 109 #include "skia/ext/event_tracer_impl.h" |
110 #include "skia/ext/skia_memory_dump_provider.h" | 110 #include "skia/ext/skia_memory_dump_provider.h" |
111 #include "sql/sql_memory_dump_provider.h" | 111 #include "sql/sql_memory_dump_provider.h" |
112 #include "ui/base/clipboard/clipboard.h" | 112 #include "ui/base/clipboard/clipboard.h" |
113 #include "ui/gfx/switches.h" | 113 #include "ui/gfx/switches.h" |
114 | 114 |
115 #if defined(USE_AURA) || defined(OS_MACOSX) | 115 #if defined(USE_AURA) || defined(OS_MACOSX) |
116 #include "content/browser/compositor/image_transport_factory.h" | 116 #include "content/browser/compositor/image_transport_factory.h" |
117 #endif | 117 #endif |
(...skipping 1658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1776 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE), | 1776 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE), |
1777 MediaInternals::GetInstance()); | 1777 MediaInternals::GetInstance()); |
1778 } | 1778 } |
1779 CHECK(audio_manager_); | 1779 CHECK(audio_manager_); |
1780 | 1780 |
1781 audio_system_ = media::AudioSystemImpl::Create(audio_manager_.get()); | 1781 audio_system_ = media::AudioSystemImpl::Create(audio_manager_.get()); |
1782 CHECK(audio_system_); | 1782 CHECK(audio_system_); |
1783 } | 1783 } |
1784 | 1784 |
1785 } // namespace content | 1785 } // namespace content |
OLD | NEW |