| 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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1149 switches::kEnableMemoryBenchmarking, | 1149 switches::kEnableMemoryBenchmarking, |
| 1150 switches::kEnableOneCopy, | 1150 switches::kEnableOneCopy, |
| 1151 switches::kEnableOverlayFullscreenVideo, | 1151 switches::kEnableOverlayFullscreenVideo, |
| 1152 switches::kEnableOverlayScrollbar, | 1152 switches::kEnableOverlayScrollbar, |
| 1153 switches::kEnableOverscrollNotifications, | 1153 switches::kEnableOverscrollNotifications, |
| 1154 switches::kEnablePinch, | 1154 switches::kEnablePinch, |
| 1155 switches::kEnablePreciseMemoryInfo, | 1155 switches::kEnablePreciseMemoryInfo, |
| 1156 switches::kEnablePreparsedJsCaching, | 1156 switches::kEnablePreparsedJsCaching, |
| 1157 switches::kEnableSeccompFilterSandbox, | 1157 switches::kEnableSeccompFilterSandbox, |
| 1158 switches::kEnableSkiaBenchmarking, | 1158 switches::kEnableSkiaBenchmarking, |
| 1159 switches::kEnableSmoothScrolling, |
| 1159 switches::kEnableSpeechSynthesis, | 1160 switches::kEnableSpeechSynthesis, |
| 1160 switches::kEnableStatsTable, | 1161 switches::kEnableStatsTable, |
| 1161 switches::kEnableStrictSiteIsolation, | 1162 switches::kEnableStrictSiteIsolation, |
| 1162 switches::kEnableTargetedStyleRecalc, | 1163 switches::kEnableTargetedStyleRecalc, |
| 1163 switches::kEnableTouchDragDrop, | 1164 switches::kEnableTouchDragDrop, |
| 1164 switches::kEnableTouchEditing, | 1165 switches::kEnableTouchEditing, |
| 1165 switches::kEnableViewport, | 1166 switches::kEnableViewport, |
| 1166 switches::kEnableViewportMeta, | 1167 switches::kEnableViewportMeta, |
| 1167 switches::kMainFrameResizesAreOrientationChanges, | 1168 switches::kMainFrameResizesAreOrientationChanges, |
| 1168 switches::kEnableVtune, | 1169 switches::kEnableVtune, |
| (...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2371 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2372 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
| 2372 IPC::Message* reply, | 2373 IPC::Message* reply, |
| 2373 const gfx::GpuMemoryBufferHandle& handle) { | 2374 const gfx::GpuMemoryBufferHandle& handle) { |
| 2374 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2375 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 2375 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2376 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
| 2376 handle); | 2377 handle); |
| 2377 Send(reply); | 2378 Send(reply); |
| 2378 } | 2379 } |
| 2379 | 2380 |
| 2380 } // namespace content | 2381 } // namespace content |
| OLD | NEW |