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