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 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 switches::kDisableBreakpad, | 1240 switches::kDisableBreakpad, |
1241 switches::kDisablePreferCompositingToLCDText, | 1241 switches::kDisablePreferCompositingToLCDText, |
1242 switches::kDisableDatabases, | 1242 switches::kDisableDatabases, |
1243 switches::kDisableDelayAgnosticAec, | 1243 switches::kDisableDelayAgnosticAec, |
1244 switches::kDisableDirectNPAPIRequests, | 1244 switches::kDisableDirectNPAPIRequests, |
1245 switches::kDisableDisplayList2dCanvas, | 1245 switches::kDisableDisplayList2dCanvas, |
1246 switches::kDisableDistanceFieldText, | 1246 switches::kDisableDistanceFieldText, |
1247 switches::kDisableEncryptedMedia, | 1247 switches::kDisableEncryptedMedia, |
1248 switches::kDisableFileSystem, | 1248 switches::kDisableFileSystem, |
1249 switches::kDisableGpuCompositing, | 1249 switches::kDisableGpuCompositing, |
| 1250 switches::kDisableGpuMemoryBufferVideoFrames, |
1250 switches::kDisableGpuVsync, | 1251 switches::kDisableGpuVsync, |
1251 switches::kDisableLowResTiling, | 1252 switches::kDisableLowResTiling, |
1252 switches::kDisableHistogramCustomizer, | 1253 switches::kDisableHistogramCustomizer, |
1253 switches::kDisableIconNtp, | 1254 switches::kDisableIconNtp, |
1254 switches::kDisableLCDText, | 1255 switches::kDisableLCDText, |
1255 switches::kDisableLocalStorage, | 1256 switches::kDisableLocalStorage, |
1256 switches::kDisableLogging, | 1257 switches::kDisableLogging, |
1257 switches::kDisableMediaSource, | 1258 switches::kDisableMediaSource, |
1258 switches::kDisableMojoChannel, | 1259 switches::kDisableMojoChannel, |
1259 switches::kDisableNewVideoRenderer, | 1260 switches::kDisableNewVideoRenderer, |
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2533 void RenderProcessHostImpl::GetAudioOutputControllers( | 2534 void RenderProcessHostImpl::GetAudioOutputControllers( |
2534 const GetAudioOutputControllersCallback& callback) const { | 2535 const GetAudioOutputControllersCallback& callback) const { |
2535 audio_renderer_host()->GetOutputControllers(callback); | 2536 audio_renderer_host()->GetOutputControllers(callback); |
2536 } | 2537 } |
2537 | 2538 |
2538 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2539 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2539 return bluetooth_dispatcher_host_.get(); | 2540 return bluetooth_dispatcher_host_.get(); |
2540 } | 2541 } |
2541 | 2542 |
2542 } // namespace content | 2543 } // namespace content |
OLD | NEW |