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 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 switches::kBlinkPlatformLogChannels, | 1054 switches::kBlinkPlatformLogChannels, |
1055 switches::kBlockCrossSiteDocuments, | 1055 switches::kBlockCrossSiteDocuments, |
1056 switches::kDefaultTileWidth, | 1056 switches::kDefaultTileWidth, |
1057 switches::kDefaultTileHeight, | 1057 switches::kDefaultTileHeight, |
1058 switches::kDisable3DAPIs, | 1058 switches::kDisable3DAPIs, |
1059 switches::kDisableAcceleratedFixedRootBackground, | 1059 switches::kDisableAcceleratedFixedRootBackground, |
1060 switches::kDisableAcceleratedOverflowScroll, | 1060 switches::kDisableAcceleratedOverflowScroll, |
1061 switches::kDisableAcceleratedVideoDecode, | 1061 switches::kDisableAcceleratedVideoDecode, |
1062 switches::kDisableApplicationCache, | 1062 switches::kDisableApplicationCache, |
1063 switches::kDisableBreakpad, | 1063 switches::kDisableBreakpad, |
| 1064 switches::kDisableCompositedSelectionUpdates, |
1064 switches::kDisableCompositingForFixedPosition, | 1065 switches::kDisableCompositingForFixedPosition, |
1065 switches::kDisableCompositingForTransition, | 1066 switches::kDisableCompositingForTransition, |
1066 switches::kDisableDatabases, | 1067 switches::kDisableDatabases, |
1067 switches::kDisableDesktopNotifications, | 1068 switches::kDisableDesktopNotifications, |
1068 switches::kDisableDirectNPAPIRequests, | 1069 switches::kDisableDirectNPAPIRequests, |
1069 switches::kDisableDistanceFieldText, | 1070 switches::kDisableDistanceFieldText, |
1070 switches::kDisableFastTextAutosizing, | 1071 switches::kDisableFastTextAutosizing, |
1071 switches::kDisableFileSystem, | 1072 switches::kDisableFileSystem, |
1072 switches::kDisableGpuCompositing, | 1073 switches::kDisableGpuCompositing, |
1073 switches::kDisableGpuVsync, | 1074 switches::kDisableGpuVsync, |
(...skipping 14 matching lines...) Expand all Loading... |
1088 switches::kDisableTouchAdjustment, | 1089 switches::kDisableTouchAdjustment, |
1089 switches::kDisableTouchDragDrop, | 1090 switches::kDisableTouchDragDrop, |
1090 switches::kDisableTouchEditing, | 1091 switches::kDisableTouchEditing, |
1091 switches::kDisableUniversalAcceleratedOverflowScroll, | 1092 switches::kDisableUniversalAcceleratedOverflowScroll, |
1092 switches::kDisableZeroCopy, | 1093 switches::kDisableZeroCopy, |
1093 switches::kDomAutomationController, | 1094 switches::kDomAutomationController, |
1094 switches::kEnableAcceleratedFixedRootBackground, | 1095 switches::kEnableAcceleratedFixedRootBackground, |
1095 switches::kEnableAcceleratedOverflowScroll, | 1096 switches::kEnableAcceleratedOverflowScroll, |
1096 switches::kEnableBeginFrameScheduling, | 1097 switches::kEnableBeginFrameScheduling, |
1097 switches::kEnableBleedingEdgeRenderingFastPaths, | 1098 switches::kEnableBleedingEdgeRenderingFastPaths, |
| 1099 switches::kEnableCompositedSelectionUpdates, |
1098 switches::kEnableCompositingForFixedPosition, | 1100 switches::kEnableCompositingForFixedPosition, |
1099 switches::kEnableCompositingForTransition, | 1101 switches::kEnableCompositingForTransition, |
1100 switches::kEnableDeferredImageDecoding, | 1102 switches::kEnableDeferredImageDecoding, |
1101 switches::kEnableDistanceFieldText, | 1103 switches::kEnableDistanceFieldText, |
1102 switches::kEnableEncryptedMedia, | 1104 switches::kEnableEncryptedMedia, |
1103 switches::kEnableExperimentalCanvasFeatures, | 1105 switches::kEnableExperimentalCanvasFeatures, |
1104 switches::kEnableExperimentalWebPlatformFeatures, | 1106 switches::kEnableExperimentalWebPlatformFeatures, |
1105 switches::kEnableFastTextAutosizing, | 1107 switches::kEnableFastTextAutosizing, |
1106 switches::kEnableGPUClientLogging, | 1108 switches::kEnableGPUClientLogging, |
1107 switches::kEnableGpuClientTracing, | 1109 switches::kEnableGpuClientTracing, |
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2248 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2250 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
2249 IPC::Message* reply, | 2251 IPC::Message* reply, |
2250 const gfx::GpuMemoryBufferHandle& handle) { | 2252 const gfx::GpuMemoryBufferHandle& handle) { |
2251 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2253 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2252 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2254 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
2253 handle); | 2255 handle); |
2254 Send(reply); | 2256 Send(reply); |
2255 } | 2257 } |
2256 | 2258 |
2257 } // namespace content | 2259 } // namespace content |
OLD | NEW |