| 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 switches::kEnableGPUClientLogging, | 1115 switches::kEnableGPUClientLogging, |
| 1116 switches::kEnableGpuClientTracing, | 1116 switches::kEnableGpuClientTracing, |
| 1117 switches::kEnableGPUServiceLogging, | 1117 switches::kEnableGPUServiceLogging, |
| 1118 switches::kEnableHighDpiCompositingForFixedPosition, | 1118 switches::kEnableHighDpiCompositingForFixedPosition, |
| 1119 switches::kEnableLowResTiling, | 1119 switches::kEnableLowResTiling, |
| 1120 switches::kEnableInbandTextTracks, | 1120 switches::kEnableInbandTextTracks, |
| 1121 switches::kEnableLCDText, | 1121 switches::kEnableLCDText, |
| 1122 switches::kEnableLayerSquashing, | 1122 switches::kEnableLayerSquashing, |
| 1123 switches::kEnableLogging, | 1123 switches::kEnableLogging, |
| 1124 switches::kEnableMemoryBenchmarking, | 1124 switches::kEnableMemoryBenchmarking, |
| 1125 switches::kEnableNetworkInformation, |
| 1125 switches::kEnableOneCopy, | 1126 switches::kEnableOneCopy, |
| 1126 switches::kEnableOverlayFullscreenVideo, | 1127 switches::kEnableOverlayFullscreenVideo, |
| 1127 switches::kEnableOverlayScrollbar, | 1128 switches::kEnableOverlayScrollbar, |
| 1128 switches::kEnableOverscrollNotifications, | 1129 switches::kEnableOverscrollNotifications, |
| 1129 switches::kEnablePinch, | 1130 switches::kEnablePinch, |
| 1130 switches::kEnablePreciseMemoryInfo, | 1131 switches::kEnablePreciseMemoryInfo, |
| 1131 switches::kEnablePreparsedJsCaching, | 1132 switches::kEnablePreparsedJsCaching, |
| 1132 switches::kEnableSeccompFilterSandbox, | 1133 switches::kEnableSeccompFilterSandbox, |
| 1133 switches::kEnableSkiaBenchmarking, | 1134 switches::kEnableSkiaBenchmarking, |
| 1134 switches::kEnableSmoothScrolling, | 1135 switches::kEnableSmoothScrolling, |
| (...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2325 } | 2326 } |
| 2326 | 2327 |
| 2327 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( | 2328 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( |
| 2328 gfx::GpuMemoryBufferType type, | 2329 gfx::GpuMemoryBufferType type, |
| 2329 const gfx::GpuMemoryBufferId& id) { | 2330 const gfx::GpuMemoryBufferId& id) { |
| 2330 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2331 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 2331 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); | 2332 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); |
| 2332 } | 2333 } |
| 2333 | 2334 |
| 2334 } // namespace content | 2335 } // namespace content |
| OLD | NEW |