| 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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 switches::kDisableJavaScriptI18NAPI, | 800 switches::kDisableJavaScriptI18NAPI, |
| 801 switches::kDisableLocalStorage, | 801 switches::kDisableLocalStorage, |
| 802 switches::kDisableLogging, | 802 switches::kDisableLogging, |
| 803 switches::kDisableSeccompFilterSandbox, | 803 switches::kDisableSeccompFilterSandbox, |
| 804 switches::kDisableSeccompSandbox, | 804 switches::kDisableSeccompSandbox, |
| 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::kEnableWebRTC, |
| 811 #else | 811 #else |
| 812 switches::kDisableWebAudio, | 812 switches::kDisableWebAudio, |
| 813 #endif | 813 #endif |
| 814 switches::kDisableWebSockets, | 814 switches::kDisableWebSockets, |
| 815 switches::kDomAutomationController, | 815 switches::kDomAutomationController, |
| 816 switches::kEnableAccessibilityLogging, | 816 switches::kEnableAccessibilityLogging, |
| 817 switches::kEnableBrowserPluginForAllViewTypes, | 817 switches::kEnableBrowserPluginForAllViewTypes, |
| 818 switches::kEnableDCHECK, | 818 switches::kEnableDCHECK, |
| 819 switches::kEnableDelegatedRenderer, | 819 switches::kEnableDelegatedRenderer, |
| 820 switches::kDisableEncryptedMedia, | 820 switches::kDisableEncryptedMedia, |
| (...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1708 TRACE_EVENT0("renderer_host", | 1708 TRACE_EVENT0("renderer_host", |
| 1709 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1709 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1710 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1710 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1711 ack_params.sync_point = 0; | 1711 ack_params.sync_point = 0; |
| 1712 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1712 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1713 gpu_process_host_id, | 1713 gpu_process_host_id, |
| 1714 ack_params); | 1714 ack_params); |
| 1715 } | 1715 } |
| 1716 | 1716 |
| 1717 } // namespace content | 1717 } // namespace content |
| OLD | NEW |