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 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1125 switches::kEnableOneCopy, | 1125 switches::kEnableOneCopy, |
1126 switches::kEnableOverlayFullscreenVideo, | 1126 switches::kEnableOverlayFullscreenVideo, |
1127 switches::kEnableOverlayScrollbar, | 1127 switches::kEnableOverlayScrollbar, |
1128 switches::kEnableOverscrollNotifications, | 1128 switches::kEnableOverscrollNotifications, |
1129 switches::kEnablePinch, | 1129 switches::kEnablePinch, |
1130 switches::kEnablePreciseMemoryInfo, | 1130 switches::kEnablePreciseMemoryInfo, |
1131 switches::kEnablePreparsedJsCaching, | 1131 switches::kEnablePreparsedJsCaching, |
1132 switches::kEnableSeccompFilterSandbox, | 1132 switches::kEnableSeccompFilterSandbox, |
1133 switches::kEnableSkiaBenchmarking, | 1133 switches::kEnableSkiaBenchmarking, |
1134 switches::kEnableSmoothScrolling, | 1134 switches::kEnableSmoothScrolling, |
1135 switches::kEnableSpeechSynthesis, | |
1136 switches::kEnableStatsTable, | 1135 switches::kEnableStatsTable, |
1137 switches::kEnableStrictSiteIsolation, | 1136 switches::kEnableStrictSiteIsolation, |
1138 switches::kEnableTargetedStyleRecalc, | 1137 switches::kEnableTargetedStyleRecalc, |
1139 switches::kEnableThreadedCompositing, | 1138 switches::kEnableThreadedCompositing, |
1140 switches::kEnableTouchDragDrop, | 1139 switches::kEnableTouchDragDrop, |
1141 switches::kEnableTouchEditing, | 1140 switches::kEnableTouchEditing, |
1142 switches::kEnableViewport, | 1141 switches::kEnableViewport, |
1143 switches::kEnableViewportMeta, | 1142 switches::kEnableViewportMeta, |
1144 switches::kEnableVtune, | 1143 switches::kEnableVtune, |
1145 switches::kEnableWebAnimationsSVG, | 1144 switches::kEnableWebAnimationsSVG, |
(...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2325 } | 2324 } |
2326 | 2325 |
2327 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( | 2326 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( |
2328 gfx::GpuMemoryBufferType type, | 2327 gfx::GpuMemoryBufferType type, |
2329 const gfx::GpuMemoryBufferId& id) { | 2328 const gfx::GpuMemoryBufferId& id) { |
2330 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2329 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2331 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); | 2330 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); |
2332 } | 2331 } |
2333 | 2332 |
2334 } // namespace content | 2333 } // namespace content |
OLD | NEW |