| 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 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1138 switches::kEnableMemoryBenchmarking, | 1138 switches::kEnableMemoryBenchmarking, |
| 1139 switches::kEnableOneCopy, | 1139 switches::kEnableOneCopy, |
| 1140 switches::kEnableOverlayFullscreenVideo, | 1140 switches::kEnableOverlayFullscreenVideo, |
| 1141 switches::kEnableOverlayScrollbar, | 1141 switches::kEnableOverlayScrollbar, |
| 1142 switches::kEnableOverscrollNotifications, | 1142 switches::kEnableOverscrollNotifications, |
| 1143 switches::kEnablePinch, | 1143 switches::kEnablePinch, |
| 1144 switches::kEnablePreciseMemoryInfo, | 1144 switches::kEnablePreciseMemoryInfo, |
| 1145 switches::kEnablePreparsedJsCaching, | 1145 switches::kEnablePreparsedJsCaching, |
| 1146 switches::kEnableRepaintAfterLayout, | 1146 switches::kEnableRepaintAfterLayout, |
| 1147 switches::kEnableSeccompFilterSandbox, | 1147 switches::kEnableSeccompFilterSandbox, |
| 1148 switches::kEnableServiceWorker, | |
| 1149 switches::kEnableSkiaBenchmarking, | 1148 switches::kEnableSkiaBenchmarking, |
| 1150 switches::kEnableSpeechSynthesis, | 1149 switches::kEnableSpeechSynthesis, |
| 1151 switches::kEnableStatsTable, | 1150 switches::kEnableStatsTable, |
| 1152 switches::kEnableStrictSiteIsolation, | 1151 switches::kEnableStrictSiteIsolation, |
| 1153 switches::kEnableTargetedStyleRecalc, | 1152 switches::kEnableTargetedStyleRecalc, |
| 1154 switches::kEnableUniversalAcceleratedOverflowScroll, | 1153 switches::kEnableUniversalAcceleratedOverflowScroll, |
| 1155 switches::kEnableTouchDragDrop, | 1154 switches::kEnableTouchDragDrop, |
| 1156 switches::kEnableTouchEditing, | 1155 switches::kEnableTouchEditing, |
| 1157 switches::kEnableViewport, | 1156 switches::kEnableViewport, |
| 1158 switches::kEnableViewportMeta, | 1157 switches::kEnableViewportMeta, |
| (...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2289 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2288 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
| 2290 IPC::Message* reply, | 2289 IPC::Message* reply, |
| 2291 const gfx::GpuMemoryBufferHandle& handle) { | 2290 const gfx::GpuMemoryBufferHandle& handle) { |
| 2292 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2291 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 2293 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2292 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
| 2294 handle); | 2293 handle); |
| 2295 Send(reply); | 2294 Send(reply); |
| 2296 } | 2295 } |
| 2297 | 2296 |
| 2298 } // namespace content | 2297 } // namespace content |
| OLD | NEW |