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 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1402 switches::kRootLayerScrolls, | 1402 switches::kRootLayerScrolls, |
1403 switches::kShowPaintRects, | 1403 switches::kShowPaintRects, |
1404 switches::kSitePerProcess, | 1404 switches::kSitePerProcess, |
1405 switches::kStatsCollectionController, | 1405 switches::kStatsCollectionController, |
1406 switches::kTestType, | 1406 switches::kTestType, |
1407 switches::kTouchEvents, | 1407 switches::kTouchEvents, |
1408 switches::kTouchTextSelectionStrategy, | 1408 switches::kTouchTextSelectionStrategy, |
1409 switches::kTraceConfigFile, | 1409 switches::kTraceConfigFile, |
1410 switches::kTraceToConsole, | 1410 switches::kTraceToConsole, |
1411 switches::kUseFakeUIForMediaStream, | 1411 switches::kUseFakeUIForMediaStream, |
| 1412 #if defined(MOJO_SHELL_CLIENT) |
| 1413 switches::kUseMusInRenderer, |
| 1414 #endif |
1412 // This flag needs to be propagated to the renderer process for | 1415 // This flag needs to be propagated to the renderer process for |
1413 // --in-process-webgl. | 1416 // --in-process-webgl. |
1414 switches::kUseGL, | 1417 switches::kUseGL, |
1415 switches::kUseMobileUserAgent, | 1418 switches::kUseMobileUserAgent, |
1416 switches::kUseNormalPriorityForTileTaskWorkerThreads, | 1419 switches::kUseNormalPriorityForTileTaskWorkerThreads, |
1417 switches::kV, | 1420 switches::kV, |
1418 switches::kVideoThreads, | 1421 switches::kVideoThreads, |
1419 switches::kVideoUnderflowThresholdMs, | 1422 switches::kVideoUnderflowThresholdMs, |
1420 switches::kVModule, | 1423 switches::kVModule, |
1421 // Please keep these in alphabetical order. Compositor switches here should | 1424 // Please keep these in alphabetical order. Compositor switches here should |
(...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2609 void RenderProcessHostImpl::GetAudioOutputControllers( | 2612 void RenderProcessHostImpl::GetAudioOutputControllers( |
2610 const GetAudioOutputControllersCallback& callback) const { | 2613 const GetAudioOutputControllersCallback& callback) const { |
2611 audio_renderer_host()->GetOutputControllers(callback); | 2614 audio_renderer_host()->GetOutputControllers(callback); |
2612 } | 2615 } |
2613 | 2616 |
2614 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2617 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2615 return bluetooth_dispatcher_host_.get(); | 2618 return bluetooth_dispatcher_host_.get(); |
2616 } | 2619 } |
2617 | 2620 |
2618 } // namespace content | 2621 } // namespace content |
OLD | NEW |