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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 switches::kInProcessWebGL, | 822 switches::kInProcessWebGL, |
823 switches::kJavaScriptFlags, | 823 switches::kJavaScriptFlags, |
824 switches::kLoggingLevel, | 824 switches::kLoggingLevel, |
825 switches::kMemoryMetrics, | 825 switches::kMemoryMetrics, |
826 #if defined(OS_ANDROID) | 826 #if defined(OS_ANDROID) |
827 switches::kNetworkCountryIso, | 827 switches::kNetworkCountryIso, |
828 switches::kDisableGestureRequirementForMediaPlayback, | 828 switches::kDisableGestureRequirementForMediaPlayback, |
829 #endif | 829 #endif |
830 switches::kNoReferrers, | 830 switches::kNoReferrers, |
831 switches::kNoSandbox, | 831 switches::kNoSandbox, |
832 switches::kOldCheckboxStyle, | |
833 switches::kPpapiInProcess, | 832 switches::kPpapiInProcess, |
834 switches::kRegisterPepperPlugins, | 833 switches::kRegisterPepperPlugins, |
835 switches::kRendererAssertTest, | 834 switches::kRendererAssertTest, |
836 #if defined(OS_POSIX) | 835 #if defined(OS_POSIX) |
837 switches::kChildCleanExit, | 836 switches::kChildCleanExit, |
838 #endif | 837 #endif |
839 switches::kRendererStartupDialog, | 838 switches::kRendererStartupDialog, |
840 switches::kShowPaintRects, | 839 switches::kShowPaintRects, |
841 switches::kShowCompositedLayerBorders, | 840 switches::kShowCompositedLayerBorders, |
842 switches::kShowCompositedLayerTree, | 841 switches::kShowCompositedLayerTree, |
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1639 TRACE_EVENT0("renderer_host", | 1638 TRACE_EVENT0("renderer_host", |
1640 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1639 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1641 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1640 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1642 ack_params.sync_point = 0; | 1641 ack_params.sync_point = 0; |
1643 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1642 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1644 gpu_process_host_id, | 1643 gpu_process_host_id, |
1645 ack_params); | 1644 ack_params); |
1646 } | 1645 } |
1647 | 1646 |
1648 } // namespace content | 1647 } // namespace content |
OLD | NEW |