OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 // Represents the browser side of the browser <--> renderer communication | 5 // Represents the browser side of the browser <--> renderer communication |
6 // channel. There will be one RenderProcessHost per renderer process. | 6 // channel. There will be one RenderProcessHost per renderer process. |
7 | 7 |
8 #include "content/browser/renderer_host/render_process_host_impl.h" | 8 #include "content/browser/renderer_host/render_process_host_impl.h" |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1254 switches::kDisableAcceleratedVideoDecode, | 1254 switches::kDisableAcceleratedVideoDecode, |
1255 switches::kDisableBlinkFeatures, | 1255 switches::kDisableBlinkFeatures, |
1256 switches::kDisableBreakpad, | 1256 switches::kDisableBreakpad, |
1257 switches::kDisablePreferCompositingToLCDText, | 1257 switches::kDisablePreferCompositingToLCDText, |
1258 switches::kDisableDatabases, | 1258 switches::kDisableDatabases, |
1259 switches::kDisableDelayAgnosticAec, | 1259 switches::kDisableDelayAgnosticAec, |
1260 switches::kDisableDirectNPAPIRequests, | 1260 switches::kDisableDirectNPAPIRequests, |
1261 switches::kDisableDisplayList2dCanvas, | 1261 switches::kDisableDisplayList2dCanvas, |
1262 switches::kDisableDistanceFieldText, | 1262 switches::kDisableDistanceFieldText, |
1263 switches::kDisableEncryptedMedia, | 1263 switches::kDisableEncryptedMedia, |
| 1264 switches::kDisableFeatures, |
1264 switches::kDisableFileSystem, | 1265 switches::kDisableFileSystem, |
1265 switches::kDisableGpuCompositing, | 1266 switches::kDisableGpuCompositing, |
1266 switches::kDisableGpuMemoryBufferVideoFrames, | 1267 switches::kDisableGpuMemoryBufferVideoFrames, |
1267 switches::kDisableGpuVsync, | 1268 switches::kDisableGpuVsync, |
1268 switches::kDisableLowResTiling, | 1269 switches::kDisableLowResTiling, |
1269 switches::kDisableHistogramCustomizer, | 1270 switches::kDisableHistogramCustomizer, |
1270 switches::kDisableIconNtp, | 1271 switches::kDisableIconNtp, |
1271 switches::kDisableLCDText, | 1272 switches::kDisableLCDText, |
1272 switches::kDisableLocalStorage, | 1273 switches::kDisableLocalStorage, |
1273 switches::kDisableLogging, | 1274 switches::kDisableLogging, |
(...skipping 19 matching lines...) Expand all Loading... |
1293 switches::kEnableBleedingEdgeRenderingFastPaths, | 1294 switches::kEnableBleedingEdgeRenderingFastPaths, |
1294 switches::kEnableBlinkFeatures, | 1295 switches::kEnableBlinkFeatures, |
1295 switches::kEnableBrowserSideNavigation, | 1296 switches::kEnableBrowserSideNavigation, |
1296 switches::kEnableCompositorAnimationTimelines, | 1297 switches::kEnableCompositorAnimationTimelines, |
1297 switches::kEnableCredentialManagerAPI, | 1298 switches::kEnableCredentialManagerAPI, |
1298 switches::kEnableDelayAgnosticAec, | 1299 switches::kEnableDelayAgnosticAec, |
1299 switches::kEnableDisplayList2dCanvas, | 1300 switches::kEnableDisplayList2dCanvas, |
1300 switches::kEnableDistanceFieldText, | 1301 switches::kEnableDistanceFieldText, |
1301 switches::kEnableExperimentalCanvasFeatures, | 1302 switches::kEnableExperimentalCanvasFeatures, |
1302 switches::kEnableExperimentalWebPlatformFeatures, | 1303 switches::kEnableExperimentalWebPlatformFeatures, |
| 1304 switches::kEnableFeatures, |
1303 switches::kEnableGPUClientLogging, | 1305 switches::kEnableGPUClientLogging, |
1304 switches::kEnableGpuClientTracing, | 1306 switches::kEnableGpuClientTracing, |
1305 switches::kEnableGpuMemoryBufferVideoFrames, | 1307 switches::kEnableGpuMemoryBufferVideoFrames, |
1306 switches::kEnableGPUServiceLogging, | 1308 switches::kEnableGPUServiceLogging, |
1307 switches::kEnableIconNtp, | 1309 switches::kEnableIconNtp, |
1308 switches::kEnableLinkDisambiguationPopup, | 1310 switches::kEnableLinkDisambiguationPopup, |
1309 switches::kEnableLowResTiling, | 1311 switches::kEnableLowResTiling, |
1310 switches::kEnableInbandTextTracks, | 1312 switches::kEnableInbandTextTracks, |
1311 switches::kEnableLCDText, | 1313 switches::kEnableLCDText, |
1312 switches::kEnableLogging, | 1314 switches::kEnableLogging, |
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2560 void RenderProcessHostImpl::GetAudioOutputControllers( | 2562 void RenderProcessHostImpl::GetAudioOutputControllers( |
2561 const GetAudioOutputControllersCallback& callback) const { | 2563 const GetAudioOutputControllersCallback& callback) const { |
2562 audio_renderer_host()->GetOutputControllers(callback); | 2564 audio_renderer_host()->GetOutputControllers(callback); |
2563 } | 2565 } |
2564 | 2566 |
2565 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2567 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2566 return bluetooth_dispatcher_host_.get(); | 2568 return bluetooth_dispatcher_host_.get(); |
2567 } | 2569 } |
2568 | 2570 |
2569 } // namespace content | 2571 } // namespace content |
OLD | NEW |