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 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1290 switches::kEnableSmoothScrolling, | 1290 switches::kEnableSmoothScrolling, |
1291 switches::kEnableStaleWhileRevalidate, | 1291 switches::kEnableStaleWhileRevalidate, |
1292 switches::kEnableStatsTable, | 1292 switches::kEnableStatsTable, |
1293 switches::kEnableStrictSiteIsolation, | 1293 switches::kEnableStrictSiteIsolation, |
1294 switches::kEnableThreadedCompositing, | 1294 switches::kEnableThreadedCompositing, |
1295 switches::kEnableTouchDragDrop, | 1295 switches::kEnableTouchDragDrop, |
1296 switches::kEnableTouchEditing, | 1296 switches::kEnableTouchEditing, |
1297 switches::kEnableUnsafeES3APIs, | 1297 switches::kEnableUnsafeES3APIs, |
1298 switches::kEnableViewport, | 1298 switches::kEnableViewport, |
1299 switches::kEnableViewportMeta, | 1299 switches::kEnableViewportMeta, |
| 1300 switches::kEnableViewportScrollOrderExperiment, |
1300 switches::kEnableVtune, | 1301 switches::kEnableVtune, |
1301 switches::kEnableWebBluetooth, | 1302 switches::kEnableWebBluetooth, |
1302 switches::kEnableWebGLDraftExtensions, | 1303 switches::kEnableWebGLDraftExtensions, |
1303 switches::kEnableWebGLImageChromium, | 1304 switches::kEnableWebGLImageChromium, |
1304 switches::kExplicitlyAllowedPorts, | 1305 switches::kExplicitlyAllowedPorts, |
1305 switches::kForceDeviceScaleFactor, | 1306 switches::kForceDeviceScaleFactor, |
1306 switches::kForceDisplayList2dCanvas, | 1307 switches::kForceDisplayList2dCanvas, |
1307 switches::kFullMemoryCrashReport, | 1308 switches::kFullMemoryCrashReport, |
1308 switches::kIPCConnectionTimeout, | 1309 switches::kIPCConnectionTimeout, |
1309 switches::kJavaScriptFlags, | 1310 switches::kJavaScriptFlags, |
(...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2500 void RenderProcessHostImpl::GetAudioOutputControllers( | 2501 void RenderProcessHostImpl::GetAudioOutputControllers( |
2501 const GetAudioOutputControllersCallback& callback) const { | 2502 const GetAudioOutputControllersCallback& callback) const { |
2502 audio_renderer_host()->GetOutputControllers(callback); | 2503 audio_renderer_host()->GetOutputControllers(callback); |
2503 } | 2504 } |
2504 | 2505 |
2505 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2506 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2506 return bluetooth_dispatcher_host_.get(); | 2507 return bluetooth_dispatcher_host_.get(); |
2507 } | 2508 } |
2508 | 2509 |
2509 } // namespace content | 2510 } // namespace content |
OLD | NEW |