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 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1158 switches::kEnableSmoothScrolling, | 1158 switches::kEnableSmoothScrolling, |
1159 switches::kEnableStatsTable, | 1159 switches::kEnableStatsTable, |
1160 switches::kEnableStrictSiteIsolation, | 1160 switches::kEnableStrictSiteIsolation, |
1161 switches::kEnableTargetedStyleRecalc, | 1161 switches::kEnableTargetedStyleRecalc, |
1162 switches::kEnableThreadedCompositing, | 1162 switches::kEnableThreadedCompositing, |
1163 switches::kEnableTouchDragDrop, | 1163 switches::kEnableTouchDragDrop, |
1164 switches::kEnableTouchEditing, | 1164 switches::kEnableTouchEditing, |
1165 switches::kEnableViewport, | 1165 switches::kEnableViewport, |
1166 switches::kEnableViewportMeta, | 1166 switches::kEnableViewportMeta, |
1167 switches::kEnableVtune, | 1167 switches::kEnableVtune, |
1168 switches::kEnableWebAnimationsSVG, | |
1169 switches::kEnableWebGLDraftExtensions, | 1168 switches::kEnableWebGLDraftExtensions, |
1170 switches::kEnableWebGLImageChromium, | 1169 switches::kEnableWebGLImageChromium, |
1171 switches::kEnableWebMIDI, | 1170 switches::kEnableWebMIDI, |
1172 switches::kEnableZeroCopy, | 1171 switches::kEnableZeroCopy, |
1173 switches::kForceDeviceScaleFactor, | 1172 switches::kForceDeviceScaleFactor, |
1174 switches::kFullMemoryCrashReport, | 1173 switches::kFullMemoryCrashReport, |
1175 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, | 1174 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, |
1176 switches::kIPCConnectionTimeout, | 1175 switches::kIPCConnectionTimeout, |
1177 switches::kJavaScriptFlags, | 1176 switches::kJavaScriptFlags, |
1178 switches::kLoggingLevel, | 1177 switches::kLoggingLevel, |
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2356 } | 2355 } |
2357 | 2356 |
2358 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( | 2357 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( |
2359 gfx::GpuMemoryBufferType type, | 2358 gfx::GpuMemoryBufferType type, |
2360 const gfx::GpuMemoryBufferId& id) { | 2359 const gfx::GpuMemoryBufferId& id) { |
2361 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2360 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2362 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); | 2361 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); |
2363 } | 2362 } |
2364 | 2363 |
2365 } // namespace content | 2364 } // namespace content |
OLD | NEW |