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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
804 switches::kDisableMediaSource, | 804 switches::kDisableMediaSource, |
805 switches::kEnablePartialSwap, | 805 switches::kEnablePartialSwap, |
806 switches::kEnablePerTilePainting, | 806 switches::kEnablePerTilePainting, |
807 switches::kEnableRendererSideMixing, | 807 switches::kEnableRendererSideMixing, |
808 switches::kEnableStrictSiteIsolation, | 808 switches::kEnableStrictSiteIsolation, |
809 switches::kDisableFullScreen, | 809 switches::kDisableFullScreen, |
810 switches::kEnablePepperTesting, | 810 switches::kEnablePepperTesting, |
811 switches::kEnablePreparsedJsCaching, | 811 switches::kEnablePreparsedJsCaching, |
812 switches::kEnablePruneGpuCommandBuffers, | 812 switches::kEnablePruneGpuCommandBuffers, |
813 switches::kEnablePinch, | 813 switches::kEnablePinch, |
| 814 switches::kEnablePinchInCompositor, |
814 #if defined(OS_MACOSX) | 815 #if defined(OS_MACOSX) |
815 // Allow this to be set when invoking the browser and relayed along. | 816 // Allow this to be set when invoking the browser and relayed along. |
816 switches::kEnableSandboxLogging, | 817 switches::kEnableSandboxLogging, |
817 #endif | 818 #endif |
818 switches::kEnableSeccompSandbox, | 819 switches::kEnableSeccompSandbox, |
819 switches::kEnableStatsTable, | 820 switches::kEnableStatsTable, |
820 switches::kEnableThreadedCompositing, | 821 switches::kEnableThreadedCompositing, |
821 switches::kDisableThreadedCompositing, | 822 switches::kDisableThreadedCompositing, |
822 switches::kEnableTouchEvents, | 823 switches::kEnableTouchEvents, |
823 switches::kEnableViewport, | 824 switches::kEnableViewport, |
(...skipping 741 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 |