| 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 1492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 switches::kTouchEvents, | 1503 switches::kTouchEvents, |
| 1504 switches::kTouchTextSelectionStrategy, | 1504 switches::kTouchTextSelectionStrategy, |
| 1505 switches::kTraceConfigFile, | 1505 switches::kTraceConfigFile, |
| 1506 switches::kTraceToConsole, | 1506 switches::kTraceToConsole, |
| 1507 switches::kUseCrossProcessFramesForGuests, | 1507 switches::kUseCrossProcessFramesForGuests, |
| 1508 switches::kUseFakeUIForMediaStream, | 1508 switches::kUseFakeUIForMediaStream, |
| 1509 // This flag needs to be propagated to the renderer process for | 1509 // This flag needs to be propagated to the renderer process for |
| 1510 // --in-process-webgl. | 1510 // --in-process-webgl. |
| 1511 switches::kUseGL, | 1511 switches::kUseGL, |
| 1512 switches::kUseMobileUserAgent, | 1512 switches::kUseMobileUserAgent, |
| 1513 switches::kUseNormalPriorityForTileTaskWorkerThreads, | |
| 1514 switches::kUseRemoteCompositing, | 1513 switches::kUseRemoteCompositing, |
| 1515 switches::kV, | 1514 switches::kV, |
| 1516 switches::kVideoThreads, | 1515 switches::kVideoThreads, |
| 1517 switches::kVideoUnderflowThresholdMs, | 1516 switches::kVideoUnderflowThresholdMs, |
| 1518 switches::kVModule, | 1517 switches::kVModule, |
| 1519 // Please keep these in alphabetical order. Compositor switches here should | 1518 // Please keep these in alphabetical order. Compositor switches here should |
| 1520 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1519 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1521 cc::switches::kDisableCachedPictureRaster, | 1520 cc::switches::kDisableCachedPictureRaster, |
| 1522 cc::switches::kDisableCompositedAntialiasing, | 1521 cc::switches::kDisableCompositedAntialiasing, |
| 1523 cc::switches::kDisableCompositorPropertyTrees, | 1522 cc::switches::kDisableCompositorPropertyTrees, |
| (...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2789 void RenderProcessHostImpl::GetAudioOutputControllers( | 2788 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2790 const GetAudioOutputControllersCallback& callback) const { | 2789 const GetAudioOutputControllersCallback& callback) const { |
| 2791 audio_renderer_host()->GetOutputControllers(callback); | 2790 audio_renderer_host()->GetOutputControllers(callback); |
| 2792 } | 2791 } |
| 2793 | 2792 |
| 2794 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2793 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2795 return bluetooth_dispatcher_host_.get(); | 2794 return bluetooth_dispatcher_host_.get(); |
| 2796 } | 2795 } |
| 2797 | 2796 |
| 2798 } // namespace content | 2797 } // namespace content |
| OLD | NEW |