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 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1112 switches::kDisableLayerSquashing, | 1112 switches::kDisableLayerSquashing, |
1113 switches::kDisableLocalStorage, | 1113 switches::kDisableLocalStorage, |
1114 switches::kDisableLogging, | 1114 switches::kDisableLogging, |
1115 switches::kDisableMediaSource, | 1115 switches::kDisableMediaSource, |
1116 switches::kDisableOverlayScrollbar, | 1116 switches::kDisableOverlayScrollbar, |
1117 switches::kDisablePinch, | 1117 switches::kDisablePinch, |
1118 switches::kDisablePrefixedEncryptedMedia, | 1118 switches::kDisablePrefixedEncryptedMedia, |
1119 switches::kDisableSeccompFilterSandbox, | 1119 switches::kDisableSeccompFilterSandbox, |
1120 switches::kDisableSessionStorage, | 1120 switches::kDisableSessionStorage, |
1121 switches::kDisableSharedWorkers, | 1121 switches::kDisableSharedWorkers, |
1122 switches::kDisableSpeechSynthesis, | |
1123 switches::kDisableTouchAdjustment, | 1122 switches::kDisableTouchAdjustment, |
1124 switches::kDisableTouchDragDrop, | 1123 switches::kDisableTouchDragDrop, |
1125 switches::kDisableTouchEditing, | 1124 switches::kDisableTouchEditing, |
1126 switches::kDisableZeroCopy, | 1125 switches::kDisableZeroCopy, |
1127 switches::kDomAutomationController, | 1126 switches::kDomAutomationController, |
1128 switches::kEnableAcceleratedFixedRootBackground, | 1127 switches::kEnableAcceleratedFixedRootBackground, |
1129 switches::kEnableAcceleratedOverflowScroll, | 1128 switches::kEnableAcceleratedOverflowScroll, |
1130 switches::kEnableBeginFrameScheduling, | 1129 switches::kEnableBeginFrameScheduling, |
1131 switches::kEnableBleedingEdgeRenderingFastPaths, | 1130 switches::kEnableBleedingEdgeRenderingFastPaths, |
1132 switches::kEnableCompositingForFixedPosition, | 1131 switches::kEnableCompositingForFixedPosition, |
(...skipping 16 matching lines...) Expand all Loading... |
1149 switches::kEnableMemoryBenchmarking, | 1148 switches::kEnableMemoryBenchmarking, |
1150 switches::kEnableOneCopy, | 1149 switches::kEnableOneCopy, |
1151 switches::kEnableOverlayFullscreenVideo, | 1150 switches::kEnableOverlayFullscreenVideo, |
1152 switches::kEnableOverlayScrollbar, | 1151 switches::kEnableOverlayScrollbar, |
1153 switches::kEnableOverscrollNotifications, | 1152 switches::kEnableOverscrollNotifications, |
1154 switches::kEnablePinch, | 1153 switches::kEnablePinch, |
1155 switches::kEnablePreciseMemoryInfo, | 1154 switches::kEnablePreciseMemoryInfo, |
1156 switches::kEnablePreparsedJsCaching, | 1155 switches::kEnablePreparsedJsCaching, |
1157 switches::kEnableSeccompFilterSandbox, | 1156 switches::kEnableSeccompFilterSandbox, |
1158 switches::kEnableSkiaBenchmarking, | 1157 switches::kEnableSkiaBenchmarking, |
| 1158 switches::kEnableSpeechSynthesis, |
1159 switches::kEnableStatsTable, | 1159 switches::kEnableStatsTable, |
1160 switches::kEnableStrictSiteIsolation, | 1160 switches::kEnableStrictSiteIsolation, |
1161 switches::kEnableTargetedStyleRecalc, | 1161 switches::kEnableTargetedStyleRecalc, |
1162 switches::kEnableTouchDragDrop, | 1162 switches::kEnableTouchDragDrop, |
1163 switches::kEnableTouchEditing, | 1163 switches::kEnableTouchEditing, |
1164 switches::kEnableViewport, | 1164 switches::kEnableViewport, |
1165 switches::kEnableViewportMeta, | 1165 switches::kEnableViewportMeta, |
1166 switches::kMainFrameResizesAreOrientationChanges, | 1166 switches::kMainFrameResizesAreOrientationChanges, |
1167 switches::kEnableVtune, | 1167 switches::kEnableVtune, |
1168 switches::kEnableWebAnimationsSVG, | 1168 switches::kEnableWebAnimationsSVG, |
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2360 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2360 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
2361 IPC::Message* reply, | 2361 IPC::Message* reply, |
2362 const gfx::GpuMemoryBufferHandle& handle) { | 2362 const gfx::GpuMemoryBufferHandle& handle) { |
2363 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2363 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2364 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2364 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
2365 handle); | 2365 handle); |
2366 Send(reply); | 2366 Send(reply); |
2367 } | 2367 } |
2368 | 2368 |
2369 } // namespace content | 2369 } // namespace content |
OLD | NEW |