| 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 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1495 switches::kTouchEvents, | 1495 switches::kTouchEvents, |
| 1496 switches::kTouchTextSelectionStrategy, | 1496 switches::kTouchTextSelectionStrategy, |
| 1497 switches::kTraceConfigFile, | 1497 switches::kTraceConfigFile, |
| 1498 switches::kTraceToConsole, | 1498 switches::kTraceToConsole, |
| 1499 switches::kUseCrossProcessFramesForGuests, | 1499 switches::kUseCrossProcessFramesForGuests, |
| 1500 switches::kUseFakeUIForMediaStream, | 1500 switches::kUseFakeUIForMediaStream, |
| 1501 // This flag needs to be propagated to the renderer process for | 1501 // This flag needs to be propagated to the renderer process for |
| 1502 // --in-process-webgl. | 1502 // --in-process-webgl. |
| 1503 switches::kUseGL, | 1503 switches::kUseGL, |
| 1504 switches::kUseMobileUserAgent, | 1504 switches::kUseMobileUserAgent, |
| 1505 switches::kUseNewMediaCache, | |
| 1506 switches::kUseNormalPriorityForTileTaskWorkerThreads, | 1505 switches::kUseNormalPriorityForTileTaskWorkerThreads, |
| 1507 switches::kUseRemoteCompositing, | 1506 switches::kUseRemoteCompositing, |
| 1508 switches::kV, | 1507 switches::kV, |
| 1509 switches::kVideoThreads, | 1508 switches::kVideoThreads, |
| 1510 switches::kVideoUnderflowThresholdMs, | 1509 switches::kVideoUnderflowThresholdMs, |
| 1511 switches::kVModule, | 1510 switches::kVModule, |
| 1512 // Please keep these in alphabetical order. Compositor switches here should | 1511 // Please keep these in alphabetical order. Compositor switches here should |
| 1513 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1512 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1514 cc::switches::kDisableCachedPictureRaster, | 1513 cc::switches::kDisableCachedPictureRaster, |
| 1515 cc::switches::kDisableCompositedAntialiasing, | 1514 cc::switches::kDisableCompositedAntialiasing, |
| (...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2792 void RenderProcessHostImpl::GetAudioOutputControllers( | 2791 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2793 const GetAudioOutputControllersCallback& callback) const { | 2792 const GetAudioOutputControllersCallback& callback) const { |
| 2794 audio_renderer_host()->GetOutputControllers(callback); | 2793 audio_renderer_host()->GetOutputControllers(callback); |
| 2795 } | 2794 } |
| 2796 | 2795 |
| 2797 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2796 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2798 return bluetooth_dispatcher_host_.get(); | 2797 return bluetooth_dispatcher_host_.get(); |
| 2799 } | 2798 } |
| 2800 | 2799 |
| 2801 } // namespace content | 2800 } // namespace content |
| OLD | NEW |