| 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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 switches::kDisableJavaScriptI18NAPI, | 751 switches::kDisableJavaScriptI18NAPI, |
| 752 switches::kDisableLocalStorage, | 752 switches::kDisableLocalStorage, |
| 753 switches::kDisableLogging, | 753 switches::kDisableLogging, |
| 754 switches::kDisableSeccompFilterSandbox, | 754 switches::kDisableSeccompFilterSandbox, |
| 755 switches::kDisableSeccompSandbox, | 755 switches::kDisableSeccompSandbox, |
| 756 switches::kDisableSessionStorage, | 756 switches::kDisableSessionStorage, |
| 757 switches::kDisableSharedWorkers, | 757 switches::kDisableSharedWorkers, |
| 758 switches::kDisableSpeechInput, | 758 switches::kDisableSpeechInput, |
| 759 #if defined(OS_ANDROID) | 759 #if defined(OS_ANDROID) |
| 760 switches::kEnableWebAudio, | 760 switches::kEnableWebAudio, |
| 761 switches::kEnableWebRTC, |
| 761 #else | 762 #else |
| 762 switches::kDisableWebAudio, | 763 switches::kDisableWebAudio, |
| 763 #endif | 764 #endif |
| 764 switches::kEnableWebAudioInput, | 765 switches::kEnableWebAudioInput, |
| 765 switches::kDisableWebSockets, | 766 switches::kDisableWebSockets, |
| 766 switches::kDomAutomationController, | 767 switches::kDomAutomationController, |
| 767 switches::kEnableAccessibilityLogging, | 768 switches::kEnableAccessibilityLogging, |
| 768 switches::kEnableBrowserPluginCompositing, | 769 switches::kEnableBrowserPluginCompositing, |
| 769 switches::kEnableBrowserPluginForAllViewTypes, | 770 switches::kEnableBrowserPluginForAllViewTypes, |
| 770 switches::kEnableCssTransformPinch, | 771 switches::kEnableCssTransformPinch, |
| (...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1610 TRACE_EVENT0("renderer_host", | 1611 TRACE_EVENT0("renderer_host", |
| 1611 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1612 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
| 1612 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1613 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
| 1613 ack_params.sync_point = 0; | 1614 ack_params.sync_point = 0; |
| 1614 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1615 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
| 1615 gpu_process_host_id, | 1616 gpu_process_host_id, |
| 1616 ack_params); | 1617 ack_params); |
| 1617 } | 1618 } |
| 1618 | 1619 |
| 1619 } // namespace content | 1620 } // namespace content |
| OLD | NEW |