| 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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 switches::kEnableBrowserPluginCompositing, | 769 switches::kEnableBrowserPluginCompositing, |
| 770 switches::kEnableBrowserPluginForAllViewTypes, | 770 switches::kEnableBrowserPluginForAllViewTypes, |
| 771 switches::kEnableDCHECK, | 771 switches::kEnableDCHECK, |
| 772 switches::kDisableEncryptedMedia, | 772 switches::kDisableEncryptedMedia, |
| 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::kEnableGpuBenchmarking, | 778 switches::kEnableGpuBenchmarking, |
| 779 switches::kEnableMemoryBenchmarking, |
| 779 switches::kEnableLogging, | 780 switches::kEnableLogging, |
| 780 switches::kDisableMediaSource, | 781 switches::kDisableMediaSource, |
| 781 switches::kDisableWebMediaPlayerMS, | 782 switches::kDisableWebMediaPlayerMS, |
| 782 switches::kDisableRendererSideMixing, | 783 switches::kDisableRendererSideMixing, |
| 783 switches::kEnableStrictSiteIsolation, | 784 switches::kEnableStrictSiteIsolation, |
| 784 switches::kDisableFullScreen, | 785 switches::kDisableFullScreen, |
| 785 switches::kEnableNewDialogStyle, | 786 switches::kEnableNewDialogStyle, |
| 786 #if defined(ENABLE_PLUGINS) | 787 #if defined(ENABLE_PLUGINS) |
| 787 switches::kEnablePepperTesting, | 788 switches::kEnablePepperTesting, |
| 788 #endif | 789 #endif |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1612 TRACE_EVENT0("renderer_host", | 1613 TRACE_EVENT0("renderer_host", |
| 1613 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1614 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1614 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1615 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1615 ack_params.sync_point = 0; | 1616 ack_params.sync_point = 0; |
| 1616 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1617 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1617 gpu_process_host_id, | 1618 gpu_process_host_id, |
| 1618 ack_params); | 1619 ack_params); |
| 1619 } | 1620 } |
| 1620 | 1621 |
| 1621 } // namespace content | 1622 } // namespace content |
| OLD | NEW |