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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 switches::kJavaScriptFlags, | 895 switches::kJavaScriptFlags, |
896 switches::kLoggingLevel, | 896 switches::kLoggingLevel, |
897 switches::kMemoryMetrics, | 897 switches::kMemoryMetrics, |
898 #if defined(OS_ANDROID) | 898 #if defined(OS_ANDROID) |
899 switches::kNetworkCountryIso, | 899 switches::kNetworkCountryIso, |
900 switches::kDisableGestureRequirementForMediaPlayback, | 900 switches::kDisableGestureRequirementForMediaPlayback, |
901 switches::kUseExternalVideoSurfaceThresholdInPixels, | 901 switches::kUseExternalVideoSurfaceThresholdInPixels, |
902 #endif | 902 #endif |
903 switches::kNoReferrers, | 903 switches::kNoReferrers, |
904 switches::kNoSandbox, | 904 switches::kNoSandbox, |
| 905 switches::kEnableVtune, |
905 switches::kPpapiInProcess, | 906 switches::kPpapiInProcess, |
906 switches::kRegisterPepperPlugins, | 907 switches::kRegisterPepperPlugins, |
907 switches::kRendererAssertTest, | 908 switches::kRendererAssertTest, |
908 #if defined(OS_POSIX) | 909 #if defined(OS_POSIX) |
909 switches::kChildCleanExit, | 910 switches::kChildCleanExit, |
910 #endif | 911 #endif |
911 switches::kRendererStartupDialog, | 912 switches::kRendererStartupDialog, |
912 switches::kShowPaintRects, | 913 switches::kShowPaintRects, |
913 switches::kSitePerProcess, | 914 switches::kSitePerProcess, |
914 switches::kTestSandbox, | 915 switches::kTestSandbox, |
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1742 TRACE_EVENT0("renderer_host", | 1743 TRACE_EVENT0("renderer_host", |
1743 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1744 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1744 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1745 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1745 ack_params.sync_point = 0; | 1746 ack_params.sync_point = 0; |
1746 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1747 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1747 gpu_process_host_id, | 1748 gpu_process_host_id, |
1748 ack_params); | 1749 ack_params); |
1749 } | 1750 } |
1750 | 1751 |
1751 } // namespace content | 1752 } // namespace content |
OLD | NEW |