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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 switches::kEnableGpuClientTracing, | 850 switches::kEnableGpuClientTracing, |
851 switches::kEnableGpuBenchmarking, | 851 switches::kEnableGpuBenchmarking, |
852 switches::kEnableMemoryBenchmarking, | 852 switches::kEnableMemoryBenchmarking, |
853 switches::kEnableSkiaBenchmarking, | 853 switches::kEnableSkiaBenchmarking, |
854 switches::kEnableLogging, | 854 switches::kEnableLogging, |
855 switches::kEnableSpeechSynthesis, | 855 switches::kEnableSpeechSynthesis, |
856 switches::kEnableTouchDragDrop, | 856 switches::kEnableTouchDragDrop, |
857 switches::kEnableTouchEditing, | 857 switches::kEnableTouchEditing, |
858 switches::kEnableVsyncNotification, | 858 switches::kEnableVsyncNotification, |
859 switches::kEnableWebPInAcceptHeader, | 859 switches::kEnableWebPInAcceptHeader, |
860 switches::kDisableMediaSource, | 860 switches::kDisableWebKitMediaSource, |
861 switches::kEnableStrictSiteIsolation, | 861 switches::kEnableStrictSiteIsolation, |
862 switches::kDisableFullScreen, | 862 switches::kDisableFullScreen, |
863 switches::kEnableNewDialogStyle, | 863 switches::kEnableNewDialogStyle, |
864 #if defined(ENABLE_PLUGINS) | 864 #if defined(ENABLE_PLUGINS) |
865 switches::kEnablePepperTesting, | 865 switches::kEnablePepperTesting, |
866 switches::kDisablePepper3d, | 866 switches::kDisablePepper3d, |
867 #endif | 867 #endif |
868 switches::kEnablePreparsedJsCaching, | 868 switches::kEnablePreparsedJsCaching, |
869 switches::kEnablePruneGpuCommandBuffers, | 869 switches::kEnablePruneGpuCommandBuffers, |
870 switches::kEnablePinch, | 870 switches::kEnablePinch, |
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1750 TRACE_EVENT0("renderer_host", | 1750 TRACE_EVENT0("renderer_host", |
1751 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1751 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1752 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1752 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1753 ack_params.sync_point = 0; | 1753 ack_params.sync_point = 0; |
1754 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1754 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1755 gpu_process_host_id, | 1755 gpu_process_host_id, |
1756 ack_params); | 1756 ack_params); |
1757 } | 1757 } |
1758 | 1758 |
1759 } // namespace content | 1759 } // namespace content |
OLD | NEW |