Chromium Code Reviews| 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 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 998 switches::kEnableAccessibilityLogging, | 998 switches::kEnableAccessibilityLogging, |
| 999 switches::kEnableBeginFrameScheduling, | 999 switches::kEnableBeginFrameScheduling, |
| 1000 switches::kEnableBrowserPluginForAllViewTypes, | 1000 switches::kEnableBrowserPluginForAllViewTypes, |
| 1001 switches::kEnableCompositedScrollingForFrames, | 1001 switches::kEnableCompositedScrollingForFrames, |
| 1002 switches::kEnableCompositingForFixedPosition, | 1002 switches::kEnableCompositingForFixedPosition, |
| 1003 switches::kEnableCompositingForTransition, | 1003 switches::kEnableCompositingForTransition, |
| 1004 switches::kEnableDCHECK, | 1004 switches::kEnableDCHECK, |
| 1005 switches::kEnableDeadlineScheduling, | 1005 switches::kEnableDeadlineScheduling, |
| 1006 switches::kEnableDeferredImageDecoding, | 1006 switches::kEnableDeferredImageDecoding, |
| 1007 switches::kEnableDelegatedRenderer, | 1007 switches::kEnableDelegatedRenderer, |
| 1008 switches::kEnableDomDistiller, | |
|
nasko
2014/01/16 23:39:12
This shouldn't be here, as the chrome layer can ad
nyquist
2014/01/22 00:47:58
Removed.
| |
| 1008 switches::kEnableEac3Playback, | 1009 switches::kEnableEac3Playback, |
| 1009 switches::kEnableEncryptedMedia, | 1010 switches::kEnableEncryptedMedia, |
| 1010 switches::kEnableExperimentalCanvasFeatures, | 1011 switches::kEnableExperimentalCanvasFeatures, |
| 1011 switches::kEnableExperimentalWebPlatformFeatures, | 1012 switches::kEnableExperimentalWebPlatformFeatures, |
| 1012 switches::kEnableExperimentalWebSocket, | 1013 switches::kEnableExperimentalWebSocket, |
| 1013 switches::kEnableFastTextAutosizing, | 1014 switches::kEnableFastTextAutosizing, |
| 1014 switches::kEnableGpuBenchmarking, | 1015 switches::kEnableGpuBenchmarking, |
| 1015 switches::kEnableGPUClientLogging, | 1016 switches::kEnableGPUClientLogging, |
| 1016 switches::kEnableGpuClientTracing, | 1017 switches::kEnableGpuClientTracing, |
| 1017 switches::kEnableGPUServiceLogging, | 1018 switches::kEnableGPUServiceLogging, |
| (...skipping 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2017 return; | 2018 return; |
| 2018 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); | 2019 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); |
| 2019 } | 2020 } |
| 2020 | 2021 |
| 2021 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { | 2022 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { |
| 2022 Send(new MediaStreamMsg_DisableAecDump()); | 2023 Send(new MediaStreamMsg_DisableAecDump()); |
| 2023 } | 2024 } |
| 2024 #endif | 2025 #endif |
| 2025 | 2026 |
| 2026 } // namespace content | 2027 } // namespace content |
| OLD | NEW |