| 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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1118 switches::kDisableTouchEditing, | 1118 switches::kDisableTouchEditing, |
| 1119 switches::kDisableZeroCopy, | 1119 switches::kDisableZeroCopy, |
| 1120 switches::kDomAutomationController, | 1120 switches::kDomAutomationController, |
| 1121 switches::kEnableAcceleratedFixedRootBackground, | 1121 switches::kEnableAcceleratedFixedRootBackground, |
| 1122 switches::kEnableAcceleratedOverflowScroll, | 1122 switches::kEnableAcceleratedOverflowScroll, |
| 1123 switches::kEnableBeginFrameScheduling, | 1123 switches::kEnableBeginFrameScheduling, |
| 1124 switches::kEnableBleedingEdgeRenderingFastPaths, | 1124 switches::kEnableBleedingEdgeRenderingFastPaths, |
| 1125 switches::kEnableCompositingForFixedPosition, | 1125 switches::kEnableCompositingForFixedPosition, |
| 1126 switches::kEnableCompositingForTransition, | 1126 switches::kEnableCompositingForTransition, |
| 1127 switches::kEnableDeferredImageDecoding, | 1127 switches::kEnableDeferredImageDecoding, |
| 1128 switches::kEnableDisplayList2dCanvas, |
| 1128 switches::kEnableDistanceFieldText, | 1129 switches::kEnableDistanceFieldText, |
| 1129 switches::kEnableEncryptedMedia, | 1130 switches::kEnableEncryptedMedia, |
| 1130 switches::kEnableExperimentalCanvasFeatures, | 1131 switches::kEnableExperimentalCanvasFeatures, |
| 1131 switches::kEnableExperimentalWebPlatformFeatures, | 1132 switches::kEnableExperimentalWebPlatformFeatures, |
| 1132 switches::kEnableFastTextAutosizing, | 1133 switches::kEnableFastTextAutosizing, |
| 1133 switches::kEnableGPUClientLogging, | 1134 switches::kEnableGPUClientLogging, |
| 1134 switches::kEnableGpuClientTracing, | 1135 switches::kEnableGpuClientTracing, |
| 1135 switches::kEnableGPUServiceLogging, | 1136 switches::kEnableGPUServiceLogging, |
| 1136 switches::kEnableHighDpiCompositingForFixedPosition, | 1137 switches::kEnableHighDpiCompositingForFixedPosition, |
| 1137 switches::kEnableLowResTiling, | 1138 switches::kEnableLowResTiling, |
| (...skipping 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2335 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2336 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
| 2336 IPC::Message* reply, | 2337 IPC::Message* reply, |
| 2337 const gfx::GpuMemoryBufferHandle& handle) { | 2338 const gfx::GpuMemoryBufferHandle& handle) { |
| 2338 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2339 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 2339 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2340 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
| 2340 handle); | 2341 handle); |
| 2341 Send(reply); | 2342 Send(reply); |
| 2342 } | 2343 } |
| 2343 | 2344 |
| 2344 } // namespace content | 2345 } // namespace content |
| OLD | NEW |