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 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
805 switches::kDisableSessionStorage, | 805 switches::kDisableSessionStorage, |
806 switches::kDisableSharedWorkers, | 806 switches::kDisableSharedWorkers, |
807 switches::kDisableSpeechInput, | 807 switches::kDisableSpeechInput, |
808 #if defined(OS_ANDROID) | 808 #if defined(OS_ANDROID) |
809 switches::kEnableWebAudio, | 809 switches::kEnableWebAudio, |
810 switches::kDisableWebRTC, | 810 switches::kDisableWebRTC, |
811 #else | 811 #else |
812 switches::kDisableWebAudio, | 812 switches::kDisableWebAudio, |
813 #endif | 813 #endif |
814 switches::kDisableWebSockets, | 814 switches::kDisableWebSockets, |
| 815 switches::kEnableExperimentalWebSocket, |
815 switches::kDomAutomationController, | 816 switches::kDomAutomationController, |
816 switches::kEnableAccessibilityLogging, | 817 switches::kEnableAccessibilityLogging, |
817 switches::kEnableBrowserPluginForAllViewTypes, | 818 switches::kEnableBrowserPluginForAllViewTypes, |
818 switches::kEnableDCHECK, | 819 switches::kEnableDCHECK, |
819 switches::kEnableDelegatedRenderer, | 820 switches::kEnableDelegatedRenderer, |
820 switches::kDisableEncryptedMedia, | 821 switches::kDisableEncryptedMedia, |
821 switches::kEnableExperimentalWebKitFeatures, | 822 switches::kEnableExperimentalWebKitFeatures, |
822 switches::kEnableFixedLayout, | 823 switches::kEnableFixedLayout, |
823 switches::kEnableDeferredImageDecoding, | 824 switches::kEnableDeferredImageDecoding, |
824 switches::kEnableGPUServiceLogging, | 825 switches::kEnableGPUServiceLogging, |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1712 TRACE_EVENT0("renderer_host", | 1713 TRACE_EVENT0("renderer_host", |
1713 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1714 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1714 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1715 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1715 ack_params.sync_point = 0; | 1716 ack_params.sync_point = 0; |
1716 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1717 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1717 gpu_process_host_id, | 1718 gpu_process_host_id, |
1718 ack_params); | 1719 ack_params); |
1719 } | 1720 } |
1720 | 1721 |
1721 } // namespace content | 1722 } // namespace content |
OLD | NEW |