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 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 switches::kEnableWebMIDI, | 1057 switches::kEnableWebMIDI, |
1058 switches::kForceDeviceScaleFactor, | 1058 switches::kForceDeviceScaleFactor, |
1059 switches::kFullMemoryCrashReport, | 1059 switches::kFullMemoryCrashReport, |
1060 switches::kJavaScriptFlags, | 1060 switches::kJavaScriptFlags, |
1061 switches::kLoggingLevel, | 1061 switches::kLoggingLevel, |
1062 switches::kMaxUntiledLayerWidth, | 1062 switches::kMaxUntiledLayerWidth, |
1063 switches::kMaxUntiledLayerHeight, | 1063 switches::kMaxUntiledLayerHeight, |
1064 switches::kMemoryMetrics, | 1064 switches::kMemoryMetrics, |
1065 switches::kNoReferrers, | 1065 switches::kNoReferrers, |
1066 switches::kNoSandbox, | 1066 switches::kNoSandbox, |
| 1067 switches::kNumRasterThreads, |
1067 switches::kPpapiInProcess, | 1068 switches::kPpapiInProcess, |
1068 switches::kProfilerTiming, | 1069 switches::kProfilerTiming, |
1069 switches::kReduceSecurityForTesting, | 1070 switches::kReduceSecurityForTesting, |
1070 switches::kRegisterPepperPlugins, | 1071 switches::kRegisterPepperPlugins, |
1071 switches::kRendererAssertTest, | 1072 switches::kRendererAssertTest, |
1072 switches::kRendererStartupDialog, | 1073 switches::kRendererStartupDialog, |
1073 switches::kShowPaintRects, | 1074 switches::kShowPaintRects, |
1074 switches::kSitePerProcess, | 1075 switches::kSitePerProcess, |
1075 switches::kStatsCollectionController, | 1076 switches::kStatsCollectionController, |
1076 switches::kTestSandbox, | 1077 switches::kTestSandbox, |
(...skipping 24 matching lines...) Expand all Loading... |
1101 cc::switches::kEnableGPURasterization, | 1102 cc::switches::kEnableGPURasterization, |
1102 cc::switches::kEnableImplSidePainting, | 1103 cc::switches::kEnableImplSidePainting, |
1103 cc::switches::kEnableLCDText, | 1104 cc::switches::kEnableLCDText, |
1104 cc::switches::kEnableMapImage, | 1105 cc::switches::kEnableMapImage, |
1105 cc::switches::kEnablePartialSwap, | 1106 cc::switches::kEnablePartialSwap, |
1106 cc::switches::kEnablePerTilePainting, | 1107 cc::switches::kEnablePerTilePainting, |
1107 cc::switches::kEnablePinchVirtualViewport, | 1108 cc::switches::kEnablePinchVirtualViewport, |
1108 cc::switches::kEnableTopControlsPositionCalculation, | 1109 cc::switches::kEnableTopControlsPositionCalculation, |
1109 cc::switches::kMaxTilesForInterestArea, | 1110 cc::switches::kMaxTilesForInterestArea, |
1110 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 1111 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
1111 cc::switches::kNumRasterThreads, | |
1112 cc::switches::kShowCompositedLayerBorders, | 1112 cc::switches::kShowCompositedLayerBorders, |
1113 cc::switches::kShowFPSCounter, | 1113 cc::switches::kShowFPSCounter, |
1114 cc::switches::kShowLayerAnimationBounds, | 1114 cc::switches::kShowLayerAnimationBounds, |
1115 cc::switches::kShowNonOccludingRects, | 1115 cc::switches::kShowNonOccludingRects, |
1116 cc::switches::kShowOccludingRects, | 1116 cc::switches::kShowOccludingRects, |
1117 cc::switches::kShowPropertyChangedRects, | 1117 cc::switches::kShowPropertyChangedRects, |
1118 cc::switches::kShowReplicaScreenSpaceRects, | 1118 cc::switches::kShowReplicaScreenSpaceRects, |
1119 cc::switches::kShowScreenSpaceRects, | 1119 cc::switches::kShowScreenSpaceRects, |
1120 cc::switches::kShowSurfaceDamageRects, | 1120 cc::switches::kShowSurfaceDamageRects, |
1121 cc::switches::kSlowDownRasterScaleFactor, | 1121 cc::switches::kSlowDownRasterScaleFactor, |
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2023 return; | 2023 return; |
2024 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); | 2024 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); |
2025 } | 2025 } |
2026 | 2026 |
2027 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { | 2027 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { |
2028 Send(new MediaStreamMsg_DisableAecDump()); | 2028 Send(new MediaStreamMsg_DisableAecDump()); |
2029 } | 2029 } |
2030 #endif | 2030 #endif |
2031 | 2031 |
2032 } // namespace content | 2032 } // namespace content |
OLD | NEW |