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