| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1220 switches::kDisableAcceleratedJpegDecoding, | 1220 switches::kDisableAcceleratedJpegDecoding, |
| 1221 switches::kDisableAcceleratedVideoDecode, | 1221 switches::kDisableAcceleratedVideoDecode, |
| 1222 switches::kDisableBlinkFeatures, | 1222 switches::kDisableBlinkFeatures, |
| 1223 switches::kDisableBreakpad, | 1223 switches::kDisableBreakpad, |
| 1224 switches::kDisablePreferCompositingToLCDText, | 1224 switches::kDisablePreferCompositingToLCDText, |
| 1225 switches::kDisableDatabases, | 1225 switches::kDisableDatabases, |
| 1226 switches::kDisableDirectNPAPIRequests, | 1226 switches::kDisableDirectNPAPIRequests, |
| 1227 switches::kDisableDisplayList2dCanvas, | 1227 switches::kDisableDisplayList2dCanvas, |
| 1228 switches::kDisableDistanceFieldText, | 1228 switches::kDisableDistanceFieldText, |
| 1229 switches::kDisableEncryptedMedia, | 1229 switches::kDisableEncryptedMedia, |
| 1230 switches::kDisableFileSystem, | |
| 1231 switches::kDisableGpuCompositing, | 1230 switches::kDisableGpuCompositing, |
| 1232 switches::kDisableGpuVsync, | 1231 switches::kDisableGpuVsync, |
| 1233 switches::kDisableLowResTiling, | 1232 switches::kDisableLowResTiling, |
| 1234 switches::kDisableHistogramCustomizer, | 1233 switches::kDisableHistogramCustomizer, |
| 1235 switches::kDisableIconNtp, | 1234 switches::kDisableIconNtp, |
| 1236 switches::kDisableLCDText, | 1235 switches::kDisableLCDText, |
| 1237 switches::kDisableLocalStorage, | 1236 switches::kDisableLocalStorage, |
| 1238 switches::kDisableLogging, | 1237 switches::kDisableLogging, |
| 1239 switches::kDisableMediaSource, | 1238 switches::kDisableMediaSource, |
| 1240 switches::kDisableMojoChannel, | 1239 switches::kDisableMojoChannel, |
| (...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2484 if (worker_ref_count_ == 0) | 2483 if (worker_ref_count_ == 0) |
| 2485 Cleanup(); | 2484 Cleanup(); |
| 2486 } | 2485 } |
| 2487 | 2486 |
| 2488 void RenderProcessHostImpl::GetAudioOutputControllers( | 2487 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2489 const GetAudioOutputControllersCallback& callback) const { | 2488 const GetAudioOutputControllersCallback& callback) const { |
| 2490 audio_renderer_host()->GetOutputControllers(callback); | 2489 audio_renderer_host()->GetOutputControllers(callback); |
| 2491 } | 2490 } |
| 2492 | 2491 |
| 2493 } // namespace content | 2492 } // namespace content |
| OLD | NEW |