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 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1139 switches::kEnableMemoryBenchmarking, | 1139 switches::kEnableMemoryBenchmarking, |
1140 switches::kEnableOneCopy, | 1140 switches::kEnableOneCopy, |
1141 switches::kEnableOverlayFullscreenVideo, | 1141 switches::kEnableOverlayFullscreenVideo, |
1142 switches::kEnableOverlayScrollbar, | 1142 switches::kEnableOverlayScrollbar, |
1143 switches::kEnableOverscrollNotifications, | 1143 switches::kEnableOverscrollNotifications, |
1144 switches::kEnablePinch, | 1144 switches::kEnablePinch, |
1145 switches::kEnablePreciseMemoryInfo, | 1145 switches::kEnablePreciseMemoryInfo, |
1146 switches::kEnablePreparsedJsCaching, | 1146 switches::kEnablePreparsedJsCaching, |
1147 switches::kEnableRepaintAfterLayout, | 1147 switches::kEnableRepaintAfterLayout, |
1148 switches::kEnableSeccompFilterSandbox, | 1148 switches::kEnableSeccompFilterSandbox, |
1149 switches::kEnableServiceWorker, | |
1150 switches::kEnableSkiaBenchmarking, | 1149 switches::kEnableSkiaBenchmarking, |
1151 switches::kEnableSpeechSynthesis, | 1150 switches::kEnableSpeechSynthesis, |
1152 switches::kEnableStatsTable, | 1151 switches::kEnableStatsTable, |
1153 switches::kEnableStrictSiteIsolation, | 1152 switches::kEnableStrictSiteIsolation, |
1154 switches::kEnableTargetedStyleRecalc, | 1153 switches::kEnableTargetedStyleRecalc, |
1155 switches::kEnableTouchDragDrop, | 1154 switches::kEnableTouchDragDrop, |
1156 switches::kEnableTouchEditing, | 1155 switches::kEnableTouchEditing, |
1157 switches::kEnableViewport, | 1156 switches::kEnableViewport, |
1158 switches::kEnableViewportMeta, | 1157 switches::kEnableViewportMeta, |
1159 switches::kMainFrameResizesAreOrientationChanges, | 1158 switches::kMainFrameResizesAreOrientationChanges, |
(...skipping 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2358 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2357 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
2359 IPC::Message* reply, | 2358 IPC::Message* reply, |
2360 const gfx::GpuMemoryBufferHandle& handle) { | 2359 const gfx::GpuMemoryBufferHandle& handle) { |
2361 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2360 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2362 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2361 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
2363 handle); | 2362 handle); |
2364 Send(reply); | 2363 Send(reply); |
2365 } | 2364 } |
2366 | 2365 |
2367 } // namespace content | 2366 } // namespace content |
OLD | NEW |