| 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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 switches::kInProcessWebGL, | 819 switches::kInProcessWebGL, |
| 820 switches::kJavaScriptFlags, | 820 switches::kJavaScriptFlags, |
| 821 switches::kLoggingLevel, | 821 switches::kLoggingLevel, |
| 822 switches::kMemoryMetrics, | 822 switches::kMemoryMetrics, |
| 823 #if defined(OS_ANDROID) | 823 #if defined(OS_ANDROID) |
| 824 switches::kMediaPlayerInRenderProcess, | 824 switches::kMediaPlayerInRenderProcess, |
| 825 switches::kNetworkCountryIso, | 825 switches::kNetworkCountryIso, |
| 826 #endif | 826 #endif |
| 827 switches::kNoReferrers, | 827 switches::kNoReferrers, |
| 828 switches::kNoSandbox, | 828 switches::kNoSandbox, |
| 829 switches::kOldCheckboxStyle, | |
| 830 switches::kPpapiOutOfProcess, | 829 switches::kPpapiOutOfProcess, |
| 831 switches::kRegisterPepperPlugins, | 830 switches::kRegisterPepperPlugins, |
| 832 switches::kRendererAssertTest, | 831 switches::kRendererAssertTest, |
| 833 #if defined(OS_POSIX) | 832 #if defined(OS_POSIX) |
| 834 switches::kChildCleanExit, | 833 switches::kChildCleanExit, |
| 835 #endif | 834 #endif |
| 836 switches::kRendererStartupDialog, | 835 switches::kRendererStartupDialog, |
| 837 switches::kShowPaintRects, | 836 switches::kShowPaintRects, |
| 838 switches::kSitePerProcess, | 837 switches::kSitePerProcess, |
| 839 switches::kTestSandbox, | 838 switches::kTestSandbox, |
| (...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 TRACE_EVENT0("renderer_host", | 1628 TRACE_EVENT0("renderer_host", |
| 1630 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1629 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1631 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1630 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1632 ack_params.sync_point = 0; | 1631 ack_params.sync_point = 0; |
| 1633 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1632 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1634 gpu_process_host_id, | 1633 gpu_process_host_id, |
| 1635 ack_params); | 1634 ack_params); |
| 1636 } | 1635 } |
| 1637 | 1636 |
| 1638 } // namespace content | 1637 } // namespace content |
| OLD | NEW |