| 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 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 switches::kDisableSpeechInput, | 821 switches::kDisableSpeechInput, |
| 822 switches::kDisableTouchDragDrop, | 822 switches::kDisableTouchDragDrop, |
| 823 switches::kDisableTouchEditing, | 823 switches::kDisableTouchEditing, |
| 824 #if defined(OS_ANDROID) | 824 #if defined(OS_ANDROID) |
| 825 switches::kEnableWebAudio, | 825 switches::kEnableWebAudio, |
| 826 switches::kDisableWebRTC, | 826 switches::kDisableWebRTC, |
| 827 #else | 827 #else |
| 828 switches::kDisableWebAudio, | 828 switches::kDisableWebAudio, |
| 829 #endif | 829 #endif |
| 830 switches::kEnableWebMIDI, | 830 switches::kEnableWebMIDI, |
| 831 switches::kEnableExperimentalCanvasFeatures, |
| 831 switches::kEnableExperimentalWebSocket, | 832 switches::kEnableExperimentalWebSocket, |
| 832 switches::kDomAutomationController, | 833 switches::kDomAutomationController, |
| 833 switches::kEnableAccessibilityLogging, | 834 switches::kEnableAccessibilityLogging, |
| 834 switches::kEnableBrowserPluginForAllViewTypes, | 835 switches::kEnableBrowserPluginForAllViewTypes, |
| 835 switches::kEnableDCHECK, | 836 switches::kEnableDCHECK, |
| 836 switches::kEnableDelegatedRenderer, | 837 switches::kEnableDelegatedRenderer, |
| 837 switches::kDisableEncryptedMedia, | 838 switches::kDisableEncryptedMedia, |
| 838 switches::kEnableExperimentalWebKitFeatures, | 839 switches::kEnableExperimentalWebKitFeatures, |
| 839 switches::kEnableFixedLayout, | 840 switches::kEnableFixedLayout, |
| 840 switches::kEnableDeferredImageDecoding, | 841 switches::kEnableDeferredImageDecoding, |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1740 TRACE_EVENT0("renderer_host", | 1741 TRACE_EVENT0("renderer_host", |
| 1741 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1742 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1742 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1743 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1743 ack_params.sync_point = 0; | 1744 ack_params.sync_point = 0; |
| 1744 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1745 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1745 gpu_process_host_id, | 1746 gpu_process_host_id, |
| 1746 ack_params); | 1747 ack_params); |
| 1747 } | 1748 } |
| 1748 | 1749 |
| 1749 } // namespace content | 1750 } // namespace content |
| OLD | NEW |