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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 #if !defined (GOOGLE_CHROME_BUILD) | 813 #if !defined (GOOGLE_CHROME_BUILD) |
814 // These are unsupported and not fully tested modes, so don't enable them | 814 // These are unsupported and not fully tested modes, so don't enable them |
815 // for official Google Chrome builds. | 815 // for official Google Chrome builds. |
816 switches::kInProcessPlugins, | 816 switches::kInProcessPlugins, |
817 #endif // GOOGLE_CHROME_BUILD | 817 #endif // GOOGLE_CHROME_BUILD |
818 switches::kInProcessWebGL, | 818 switches::kInProcessWebGL, |
819 switches::kJavaScriptFlags, | 819 switches::kJavaScriptFlags, |
820 switches::kLoggingLevel, | 820 switches::kLoggingLevel, |
821 switches::kMemoryMetrics, | 821 switches::kMemoryMetrics, |
822 #if defined(OS_ANDROID) | 822 #if defined(OS_ANDROID) |
823 switches::kMediaPlayerInRenderProcess, | |
824 switches::kNetworkCountryIso, | 823 switches::kNetworkCountryIso, |
825 #endif | 824 #endif |
826 switches::kNoReferrers, | 825 switches::kNoReferrers, |
827 switches::kNoSandbox, | 826 switches::kNoSandbox, |
828 switches::kOldCheckboxStyle, | 827 switches::kOldCheckboxStyle, |
829 switches::kPpapiOutOfProcess, | 828 switches::kPpapiOutOfProcess, |
830 switches::kRegisterPepperPlugins, | 829 switches::kRegisterPepperPlugins, |
831 switches::kRendererAssertTest, | 830 switches::kRendererAssertTest, |
832 #if defined(OS_POSIX) | 831 #if defined(OS_POSIX) |
833 switches::kChildCleanExit, | 832 switches::kChildCleanExit, |
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1624 TRACE_EVENT0("renderer_host", | 1623 TRACE_EVENT0("renderer_host", |
1625 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1624 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1626 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1625 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1627 ack_params.sync_point = 0; | 1626 ack_params.sync_point = 0; |
1628 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1627 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1629 gpu_process_host_id, | 1628 gpu_process_host_id, |
1630 ack_params); | 1629 ack_params); |
1631 } | 1630 } |
1632 | 1631 |
1633 } // namespace content | 1632 } // namespace content |
OLD | NEW |