| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 switches::kDisableLocalStorage, | 817 switches::kDisableLocalStorage, |
| 818 switches::kDisableLogging, | 818 switches::kDisableLogging, |
| 819 switches::kDisableSeccompFilterSandbox, | 819 switches::kDisableSeccompFilterSandbox, |
| 820 switches::kDisableSessionStorage, | 820 switches::kDisableSessionStorage, |
| 821 switches::kDisableSharedWorkers, | 821 switches::kDisableSharedWorkers, |
| 822 switches::kDisableSpeechInput, | 822 switches::kDisableSpeechInput, |
| 823 switches::kDisableTouchDragDrop, | 823 switches::kDisableTouchDragDrop, |
| 824 switches::kDisableTouchEditing, | 824 switches::kDisableTouchEditing, |
| 825 #if defined(OS_ANDROID) | 825 #if defined(OS_ANDROID) |
| 826 switches::kEnableWebAudio, | 826 switches::kEnableWebAudio, |
| 827 switches::kDisableWebRTC, | 827 switches::kEnableWebRTC, |
| 828 #else | 828 #else |
| 829 switches::kDisableWebAudio, | 829 switches::kDisableWebAudio, |
| 830 #endif | 830 #endif |
| 831 switches::kEnableWebMIDI, | 831 switches::kEnableWebMIDI, |
| 832 switches::kEnableExperimentalCanvasFeatures, | 832 switches::kEnableExperimentalCanvasFeatures, |
| 833 switches::kEnableExperimentalWebSocket, | 833 switches::kEnableExperimentalWebSocket, |
| 834 switches::kDomAutomationController, | 834 switches::kDomAutomationController, |
| 835 switches::kEnableAccessibilityLogging, | 835 switches::kEnableAccessibilityLogging, |
| 836 switches::kEnableBrowserPluginForAllViewTypes, | 836 switches::kEnableBrowserPluginForAllViewTypes, |
| 837 switches::kEnableDCHECK, | 837 switches::kEnableDCHECK, |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1742 TRACE_EVENT0("renderer_host", | 1742 TRACE_EVENT0("renderer_host", |
| 1743 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1743 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1744 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1744 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1745 ack_params.sync_point = 0; | 1745 ack_params.sync_point = 0; |
| 1746 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1746 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1747 gpu_process_host_id, | 1747 gpu_process_host_id, |
| 1748 ack_params); | 1748 ack_params); |
| 1749 } | 1749 } |
| 1750 | 1750 |
| 1751 } // namespace content | 1751 } // namespace content |
| OLD | NEW |