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 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1480 switches::kTouchTextSelectionStrategy, | 1480 switches::kTouchTextSelectionStrategy, |
1481 switches::kTraceConfigFile, | 1481 switches::kTraceConfigFile, |
1482 switches::kTraceToConsole, | 1482 switches::kTraceToConsole, |
1483 switches::kUseCrossProcessFramesForGuests, | 1483 switches::kUseCrossProcessFramesForGuests, |
1484 switches::kUseFakeUIForMediaStream, | 1484 switches::kUseFakeUIForMediaStream, |
1485 // This flag needs to be propagated to the renderer process for | 1485 // This flag needs to be propagated to the renderer process for |
1486 // --in-process-webgl. | 1486 // --in-process-webgl. |
1487 switches::kUseGL, | 1487 switches::kUseGL, |
1488 switches::kUseMobileUserAgent, | 1488 switches::kUseMobileUserAgent, |
1489 switches::kUseNewMediaCache, | 1489 switches::kUseNewMediaCache, |
1490 switches::kUseNormalPriorityForTileTaskWorkerThreads, | |
1491 switches::kUseRemoteCompositing, | 1490 switches::kUseRemoteCompositing, |
1492 switches::kV, | 1491 switches::kV, |
1493 switches::kVideoThreads, | 1492 switches::kVideoThreads, |
1494 switches::kVideoUnderflowThresholdMs, | 1493 switches::kVideoUnderflowThresholdMs, |
1495 switches::kVModule, | 1494 switches::kVModule, |
1496 // Please keep these in alphabetical order. Compositor switches here should | 1495 // Please keep these in alphabetical order. Compositor switches here should |
1497 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1496 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1498 cc::switches::kDisableCachedPictureRaster, | 1497 cc::switches::kDisableCachedPictureRaster, |
1499 cc::switches::kDisableCompositedAntialiasing, | 1498 cc::switches::kDisableCompositedAntialiasing, |
1500 cc::switches::kDisableCompositorPropertyTrees, | 1499 cc::switches::kDisableCompositorPropertyTrees, |
(...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2788 void RenderProcessHostImpl::GetAudioOutputControllers( | 2787 void RenderProcessHostImpl::GetAudioOutputControllers( |
2789 const GetAudioOutputControllersCallback& callback) const { | 2788 const GetAudioOutputControllersCallback& callback) const { |
2790 audio_renderer_host()->GetOutputControllers(callback); | 2789 audio_renderer_host()->GetOutputControllers(callback); |
2791 } | 2790 } |
2792 | 2791 |
2793 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2792 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2794 return bluetooth_dispatcher_host_.get(); | 2793 return bluetooth_dispatcher_host_.get(); |
2795 } | 2794 } |
2796 | 2795 |
2797 } // namespace content | 2796 } // namespace content |
OLD | NEW |