| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 switches::kEnableExperimentalWebKitFeatures, | 775 switches::kEnableExperimentalWebKitFeatures, |
| 776 switches::kEnableFixedLayout, | 776 switches::kEnableFixedLayout, |
| 777 switches::kEnableDeferredImageDecoding, | 777 switches::kEnableDeferredImageDecoding, |
| 778 switches::kEnableGPUServiceLogging, | 778 switches::kEnableGPUServiceLogging, |
| 779 switches::kEnableGPUClientLogging, | 779 switches::kEnableGPUClientLogging, |
| 780 switches::kEnableGpuClientTracing, | 780 switches::kEnableGpuClientTracing, |
| 781 switches::kEnableGpuBenchmarking, | 781 switches::kEnableGpuBenchmarking, |
| 782 switches::kEnableMemoryBenchmarking, | 782 switches::kEnableMemoryBenchmarking, |
| 783 switches::kEnableLogging, | 783 switches::kEnableLogging, |
| 784 switches::kDisableMediaSource, | 784 switches::kDisableMediaSource, |
| 785 switches::kDisableWebMediaPlayerMS, | |
| 786 switches::kDisableRendererSideMixing, | 785 switches::kDisableRendererSideMixing, |
| 787 switches::kEnableStrictSiteIsolation, | 786 switches::kEnableStrictSiteIsolation, |
| 788 switches::kDisableFullScreen, | 787 switches::kDisableFullScreen, |
| 789 switches::kEnableNewDialogStyle, | 788 switches::kEnableNewDialogStyle, |
| 790 #if defined(ENABLE_PLUGINS) | 789 #if defined(ENABLE_PLUGINS) |
| 791 switches::kEnablePepperTesting, | 790 switches::kEnablePepperTesting, |
| 792 #endif | 791 #endif |
| 793 switches::kEnablePreparsedJsCaching, | 792 switches::kEnablePreparsedJsCaching, |
| 794 switches::kEnablePruneGpuCommandBuffers, | 793 switches::kEnablePruneGpuCommandBuffers, |
| 795 switches::kEnablePinch, | 794 switches::kEnablePinch, |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1630 TRACE_EVENT0("renderer_host", | 1629 TRACE_EVENT0("renderer_host", |
| 1631 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1630 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1632 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1631 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1633 ack_params.sync_point = 0; | 1632 ack_params.sync_point = 0; |
| 1634 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1633 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1635 gpu_process_host_id, | 1634 gpu_process_host_id, |
| 1636 ack_params); | 1635 ack_params); |
| 1637 } | 1636 } |
| 1638 | 1637 |
| 1639 } // namespace content | 1638 } // namespace content |
| OLD | NEW |