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