| 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 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 switches::kMemoryMetrics, | 901 switches::kMemoryMetrics, |
| 902 #if defined(OS_ANDROID) | 902 #if defined(OS_ANDROID) |
| 903 switches::kNetworkCountryIso, | 903 switches::kNetworkCountryIso, |
| 904 switches::kDisableGestureRequirementForMediaPlayback, | 904 switches::kDisableGestureRequirementForMediaPlayback, |
| 905 #endif | 905 #endif |
| 906 #if defined(GOOGLE_TV) | 906 #if defined(GOOGLE_TV) |
| 907 switches::kUseExternalVideoSurfaceThresholdInPixels, | 907 switches::kUseExternalVideoSurfaceThresholdInPixels, |
| 908 #endif | 908 #endif |
| 909 switches::kNoReferrers, | 909 switches::kNoReferrers, |
| 910 switches::kNoSandbox, | 910 switches::kNoSandbox, |
| 911 switches::kEnableVtune, |
| 911 switches::kPpapiInProcess, | 912 switches::kPpapiInProcess, |
| 912 switches::kRegisterPepperPlugins, | 913 switches::kRegisterPepperPlugins, |
| 913 switches::kRendererAssertTest, | 914 switches::kRendererAssertTest, |
| 914 #if defined(OS_POSIX) | 915 #if defined(OS_POSIX) |
| 915 switches::kChildCleanExit, | 916 switches::kChildCleanExit, |
| 916 #endif | 917 #endif |
| 917 switches::kRendererStartupDialog, | 918 switches::kRendererStartupDialog, |
| 918 switches::kShowPaintRects, | 919 switches::kShowPaintRects, |
| 919 switches::kSitePerProcess, | 920 switches::kSitePerProcess, |
| 920 switches::kTestSandbox, | 921 switches::kTestSandbox, |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1748 TRACE_EVENT0("renderer_host", | 1749 TRACE_EVENT0("renderer_host", |
| 1749 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1750 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1750 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1751 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1751 ack_params.sync_point = 0; | 1752 ack_params.sync_point = 0; |
| 1752 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1753 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1753 gpu_process_host_id, | 1754 gpu_process_host_id, |
| 1754 ack_params); | 1755 ack_params); |
| 1755 } | 1756 } |
| 1756 | 1757 |
| 1757 } // namespace content | 1758 } // namespace content |
| OLD | NEW |