| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 switches::kDisableEncryptedMedia, | 817 switches::kDisableEncryptedMedia, |
| 818 switches::kEnableExperimentalWebKitFeatures, | 818 switches::kEnableExperimentalWebKitFeatures, |
| 819 switches::kEnableFixedLayout, | 819 switches::kEnableFixedLayout, |
| 820 switches::kEnableDeferredImageDecoding, | 820 switches::kEnableDeferredImageDecoding, |
| 821 switches::kEnableGPUServiceLogging, | 821 switches::kEnableGPUServiceLogging, |
| 822 switches::kEnableGPUClientLogging, | 822 switches::kEnableGPUClientLogging, |
| 823 switches::kEnableGpuClientTracing, | 823 switches::kEnableGpuClientTracing, |
| 824 switches::kEnableGpuBenchmarking, | 824 switches::kEnableGpuBenchmarking, |
| 825 switches::kEnableMemoryBenchmarking, | 825 switches::kEnableMemoryBenchmarking, |
| 826 switches::kEnableLogging, | 826 switches::kEnableLogging, |
| 827 switches::kEnableVsyncNotification, |
| 827 switches::kDisableMediaSource, | 828 switches::kDisableMediaSource, |
| 828 switches::kDisableRendererSideMixing, | 829 switches::kDisableRendererSideMixing, |
| 829 switches::kEnableStrictSiteIsolation, | 830 switches::kEnableStrictSiteIsolation, |
| 830 switches::kDisableFullScreen, | 831 switches::kDisableFullScreen, |
| 831 switches::kEnableNewDialogStyle, | 832 switches::kEnableNewDialogStyle, |
| 832 #if defined(ENABLE_PLUGINS) | 833 #if defined(ENABLE_PLUGINS) |
| 833 switches::kEnablePepperTesting, | 834 switches::kEnablePepperTesting, |
| 834 #endif | 835 #endif |
| 835 switches::kEnablePreparsedJsCaching, | 836 switches::kEnablePreparsedJsCaching, |
| 836 switches::kEnablePruneGpuCommandBuffers, | 837 switches::kEnablePruneGpuCommandBuffers, |
| (...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1705 TRACE_EVENT0("renderer_host", | 1706 TRACE_EVENT0("renderer_host", |
| 1706 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1707 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1707 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1708 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1708 ack_params.sync_point = 0; | 1709 ack_params.sync_point = 0; |
| 1709 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1710 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1710 gpu_process_host_id, | 1711 gpu_process_host_id, |
| 1711 ack_params); | 1712 ack_params); |
| 1712 } | 1713 } |
| 1713 | 1714 |
| 1714 } // namespace content | 1715 } // namespace content |
| OLD | NEW |