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 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 switches::kEnableAccessibilityLogging, | 795 switches::kEnableAccessibilityLogging, |
796 switches::kEnableDCHECK, | 796 switches::kEnableDCHECK, |
797 switches::kEnableEncryptedMedia, | 797 switches::kEnableEncryptedMedia, |
798 switches::kEnableExperimentalWebKitFeatures, | 798 switches::kEnableExperimentalWebKitFeatures, |
799 switches::kEnableFixedLayout, | 799 switches::kEnableFixedLayout, |
800 switches::kEnableGPUServiceLogging, | 800 switches::kEnableGPUServiceLogging, |
801 switches::kEnableGPUClientLogging, | 801 switches::kEnableGPUClientLogging, |
802 switches::kEnableGpuBenchmarking, | 802 switches::kEnableGpuBenchmarking, |
803 switches::kEnableLogging, | 803 switches::kEnableLogging, |
804 switches::kDisableMediaSource, | 804 switches::kDisableMediaSource, |
| 805 switches::kEnableWebMediaPlayerMS, |
805 switches::kEnablePartialSwap, | 806 switches::kEnablePartialSwap, |
806 switches::kEnablePerTilePainting, | 807 switches::kEnablePerTilePainting, |
807 switches::kEnableRendererSideMixing, | 808 switches::kEnableRendererSideMixing, |
808 switches::kEnableStrictSiteIsolation, | 809 switches::kEnableStrictSiteIsolation, |
809 switches::kDisableFullScreen, | 810 switches::kDisableFullScreen, |
810 switches::kEnablePepperTesting, | 811 switches::kEnablePepperTesting, |
811 switches::kEnablePreparsedJsCaching, | 812 switches::kEnablePreparsedJsCaching, |
812 switches::kEnablePruneGpuCommandBuffers, | 813 switches::kEnablePruneGpuCommandBuffers, |
813 switches::kEnablePinch, | 814 switches::kEnablePinch, |
814 #if defined(OS_MACOSX) | 815 #if defined(OS_MACOSX) |
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1565 const gfx::Size& size, | 1566 const gfx::Size& size, |
1566 int32 gpu_process_host_id) { | 1567 int32 gpu_process_host_id) { |
1567 TRACE_EVENT0("renderer_host", | 1568 TRACE_EVENT0("renderer_host", |
1568 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1569 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1569 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1570 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1570 gpu_process_host_id, | 1571 gpu_process_host_id, |
1571 0); | 1572 0); |
1572 } | 1573 } |
1573 | 1574 |
1574 } // namespace content | 1575 } // namespace content |
OLD | NEW |