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 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 switches::kDisableCompositorAnimationTimelines, | 1386 switches::kDisableCompositorAnimationTimelines, |
1387 switches::kDisablePreferCompositingToLCDText, | 1387 switches::kDisablePreferCompositingToLCDText, |
1388 switches::kDisableDatabases, | 1388 switches::kDisableDatabases, |
1389 switches::kDisableDelayAgnosticAec, | 1389 switches::kDisableDelayAgnosticAec, |
1390 switches::kDisableDirectNPAPIRequests, | 1390 switches::kDisableDirectNPAPIRequests, |
1391 switches::kDisableDisplayList2dCanvas, | 1391 switches::kDisableDisplayList2dCanvas, |
1392 switches::kDisableDistanceFieldText, | 1392 switches::kDisableDistanceFieldText, |
1393 switches::kDisableEncryptedMedia, | 1393 switches::kDisableEncryptedMedia, |
1394 switches::kDisableFileSystem, | 1394 switches::kDisableFileSystem, |
1395 switches::kDisableGestureRequirementForMediaPlayback, | 1395 switches::kDisableGestureRequirementForMediaPlayback, |
| 1396 switches::kDisableGestureRequirementForPresentation, |
1396 switches::kDisableGpuCompositing, | 1397 switches::kDisableGpuCompositing, |
1397 switches::kDisableGpuMemoryBufferVideoFrames, | 1398 switches::kDisableGpuMemoryBufferVideoFrames, |
1398 switches::kDisableGpuVsync, | 1399 switches::kDisableGpuVsync, |
1399 switches::kDisableLowResTiling, | 1400 switches::kDisableLowResTiling, |
1400 switches::kDisableHistogramCustomizer, | 1401 switches::kDisableHistogramCustomizer, |
1401 switches::kDisableIconNtp, | 1402 switches::kDisableIconNtp, |
1402 switches::kDisableLCDText, | 1403 switches::kDisableLCDText, |
1403 switches::kDisableLocalStorage, | 1404 switches::kDisableLocalStorage, |
1404 switches::kDisableLogging, | 1405 switches::kDisableLogging, |
1405 switches::kDisableMediaSource, | 1406 switches::kDisableMediaSource, |
(...skipping 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2792 void RenderProcessHostImpl::GetAudioOutputControllers( | 2793 void RenderProcessHostImpl::GetAudioOutputControllers( |
2793 const GetAudioOutputControllersCallback& callback) const { | 2794 const GetAudioOutputControllersCallback& callback) const { |
2794 audio_renderer_host()->GetOutputControllers(callback); | 2795 audio_renderer_host()->GetOutputControllers(callback); |
2795 } | 2796 } |
2796 | 2797 |
2797 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2798 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2798 return bluetooth_dispatcher_host_.get(); | 2799 return bluetooth_dispatcher_host_.get(); |
2799 } | 2800 } |
2800 | 2801 |
2801 } // namespace content | 2802 } // namespace content |
OLD | NEW |